fork(3) download
  1. import std.stdio : writeln;
  2. import std.range : iota;
  3. import std.algorithm.iteration : each;
  4.  
  5. void main(){iota(0,10).each!(a => "Hello".writeln);}
Success #stdin #stdout 0s 17304KB
stdin
Standard input is empty
stdout
Hello
Hello
Hello
Hello
Hello
Hello
Hello
Hello
Hello
Hello