New Issue: I/O module: keeping stdin, stdout, and stderr

20253, "mppf", "I/O module: keeping stdin, stdout, and stderr", "2022-07-19T19:12:59Z"

This issue is regarding these module-level variables in the IO module:

const stdin:  channel(false, iokind.dynamic, true);
const stdout: channel(true, iokind.dynamic, true);
const stderr: channel(true, iokind.dynamic, true);

The proposal here is to:

  • Keep these since they are standard in many programming languages
  • Adjust as appropriate for renaming the ‘channel’ type and changing its fields
  • Adjust documentation to show the type better and not to talk about file descriptor 0/1/2