fork download
  1. local a = {}
  2. local i = 0
  3. while (i < 4) do
  4. a[i] = i
  5. print(a[i])
  6. i = i + 1
  7. end
Success #stdin #stdout 0.01s 2540KB
stdin
Standard input is empty
stdout
0
1
2
3