FizzBuzz
for i = 1, 100 do
local out = ""
if i % 3 == 0 then out = out .. "Fizz" end
if i % 5 == 0 then out = out .. "Buzz" end
print(out ~= "" and out or i)
endINFO
for i = 1, 100 do
local out = ""
if i % 3 == 0 then out = out .. "Fizz" end
if i % 5 == 0 then out = out .. "Buzz" end
print(out ~= "" and out or i)
end