fork download
  1. i=1
  2. while i<=100
  3. do i = i+1
  4. if i%10 == 0 then
  5. print(i)
  6. end
  7. end
Success #stdin #stdout 0.02s 2540KB
stdin
Standard input is empty
stdout
10
20
30
40
50
60
70
80
90
100