fixed clang warnings

This commit is contained in:
2020-11-17 13:17:23 -06:00
parent ef8218996c
commit 329d34aa43
4 changed files with 6 additions and 6 deletions

View File

@@ -8,6 +8,6 @@ end
for (var x = 0; x < 1000; x=x+1) do
for (var z = 0; z < 100; z=z+1) do
print("The factorial of " .. z .. " is " .. fact(z))
print("The factorial of " .. x .. "." .. z .. " is " .. fact(z))
end
end