Make F#'s output be asynchronous

Issue #161 invalid
Doug Blank created an issue

Currently, F#'s output is stored up and then printed all at once. This is useful for some uses (deciding to display it or not) but for the interacting code, it delays all of the output until the end. This can easily be done by a pass-through Stream Writer. In fact, just letting stdout and stderr be the default will allow this to work correctly. Perhaps we need a special version for F# so we can turn on/off this ability.

Comments (4)

  1. Log in to comment