stdout top-level property

Stdout stdout

The standard output stream of data written by this program.

Implementation

Stdout get stdout {
  if (_stdout == null) {
    _stdout = _StdIOUtils._getStdioOutputStream(_stdoutFD);
  }
  return _stdout;
}