09-while.lua 56 B

1234567
  1. local i = 0
  2. while i < 10 do
  3. i = i + 1
  4. print(i)
  5. end