Open
Description
Some applications may require reading from stdin or writing to stdout, but there's no built-in factories/functions returning corresponding Sink
/Source
implementations.
It should be trivial to provide them for all targets except JS running in the browser.
For the latter, we can return an always-exhausted Source
and a Sink
writing to console.log
.