RosettaCodeData/Task/Flow-control-structures/Lua/flow-control-structures.lua
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

5 lines
67 B
Lua

i = 0
while true do
i = i + 1
if i > 10 then break end
end