Compare commits

..

No commits in common. "d28b878303d6efa36f5752ab6d0300160f2a54e8" and "f10324102bfdad4aa8dba0443790a1dcb325719d" have entirely different histories.

View File

@ -1,14 +0,0 @@
for i=1, 10, 1 do
local out = ""
if(i % 3 == 0) then
out = out .. "Fizz"
end
if(i % 5 == 0) then
out = out .. "Buzz"
end
if(out == "") then
io.write(tostring(i).."\n")
else
io.write(out.."\n")
end
end