Files
jpdebug/test.lua
2025-10-23 23:13:48 +02:00

7 lines
166 B
Lua

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