mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
18 lines
236 B
Lua
18 lines
236 B
Lua
for counter = 1, 10000 do
|
|
local result = ""
|
|
|
|
if counter % 3 == 0 then
|
|
result = result .. "fizz"
|
|
end
|
|
|
|
if counter % 5 == 0 then
|
|
result = result .. "buzz"
|
|
end
|
|
|
|
if result ~= "" then
|
|
print(result)
|
|
else
|
|
print(counter)
|
|
end
|
|
end
|