Arc Forumnew | comments | leaders | submitlogin
2 points by pg 5425 days ago | link | parent

Hmm, looks like the w/stdouts in the ops are unnecessary. Thanks for noticing.


1 point by pg 5424 days ago | link

Actually on closer examination I'm going to leave the w/stdouts in the op definitions. It's reasonable to have ops take a stream argument, and if they do they have to handle it correctly.

-----

2 points by shader 5423 days ago | link

Mind if I ask what the stream argument could be used for?

-----

1 point by pg 5422 days ago | link

You could for example write to a file or string if you were debugging.

-----

1 point by shader 5422 days ago | link

If it's for debugging, wouldn't it be easier if you just left it going to standard out? That way you could run it on the repl and see the output, and still wrap it in 'tostring or w/outfile if you wanted it to go to a string or file instead.

Maybe the stream argument could be made optional, and default do stdout? The redundancy would still exist, but it would allow us to use it both ways.

-----