Revert "added main.lua"

This reverts commit 1512c481fcc7549a62731acc46ef805eda7e8f6f.
This commit is contained in:
Hion-V 2020-12-17 16:14:41 +01:00
parent 1512c481fc
commit fefef5a98e

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