impotent/multifizz.lua
2025-09-05 21:16:09 +03:00

12 lines
164 B
Lua

threads.parallel(1, function(no)
for i = 1, 100000 do
print(i)
if i % 3 == 0 then
print("Fizz")
end
if i % 5 == 0 then
print("Buzz")
end
end
end)