fork(1) download
  1. 5.times(){|i| puts i}
  2.  
  3. i = 0
  4. while i < 5
  5. puts i
  6. i = i + 1
  7. end
  8.  
Success #stdin #stdout 0.01s 7408KB
stdin
Standard input is empty
stdout
0
1
2
3
4
0
1
2
3
4