Files
jpdebug/test.lua
2025-10-25 18:25:50 +02:00

7 lines
165 B
Lua

print("Starting loop: test 123")
for i = 1,5 do
print("i = ", i) -- we'll stop here
require("socket").sleep(1)
end
print("Yaaayyyy it works perfectly fine :)")