fork download
  1. i = 0
  2. while i < 10 do
  3. if i == 4
  4. break
  5. end
  6. puts(i)
  7. i = i + 1
  8. end
  9. print('after while')
  10.  
Success #stdin #stdout 0.01s 7452KB
stdin
Standard input is empty
stdout
0
1
2
3
after while