fork download
  1. var i=0;
  2. while (i<5)
  3. {
  4. print (i);
  5. i+=1;
  6. }
Success #stdin #stdout 0.02s 4940KB
stdin
Standard input is empty
stdout
0
1
2
3
4