On Sunday, 11 February 2018 at 12:56:34 UTC, rikki cattermole
wrote:
And it worked just as in desktop, meaning that one can do
pipeline programming in the internet using D! Or in any
enviroment where D can compile to, D runtime or no.
Well, I just remembered that the Emscripten compiler did warn
about a unresolved symbol: _assert. I should have said that might
prevent compilation somewhere but not on emcc as it just warns.
Out of interest will each! work here as well?
in the form:
import std.algorithm, std.range;
iota(5, 15).map!(x => x*2).each!(num => printf("%d ", num));
...it does.