Ale Miralles
Ale Miralles
Hey @matz! Big fan of your work! Would the syntax for this feature look something like this? ``` system('ls') { in, out, err -> ... } | stdout ``` If...
Yeah, that's way better. I'll explore that route. Thanks for replying! On Sun, 11 Nov 2018 at 21:17, matz wrote: > What I thought was: > > spawn("ls") | stdout...
I managed to implement the first use-case on my fork (and it seems to work fine so far) ``` spawn("ls") | stdout # can be a producer ``` Now I'm...
Hi @avarisc I'll investigate this one the next week. If is not supported right now, it'll be at the future. Not sure how much effort/time will take, though. (After a...
Hey @avarisc, I been doing a copule of experiments trying to implement this feature, and the bad news is, since that there's no builtin support for fibers on .NET, there...
My pleasure. With regards to JRuby's Fiber implementation, that's exactly what they say; "While is not optimal, a thread based Fiber implementation is better than not having Fiber at all"....