Revert "added main.lua"

This reverts commit 2ad67d383941129f0614d3843c7abf5cccd937b0.
This commit is contained in:
Hion-V 2020-12-17 16:07:15 +01:00
parent d28b878303
commit cc2bd80c7d

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