RosettaCodeData/Task/Loops-Infinite/Lua/loops-infinite.lua

9 lines
89 B
Lua
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
while true do
print("SPAM")
end
--Another solution
repeat
print("SPAM")
until false