8 lines
89 B
Lua
8 lines
89 B
Lua
while true do
|
|
print("SPAM")
|
|
end
|
|
|
|
--Another solution
|
|
repeat
|
|
print("SPAM")
|
|
until false
|