Start with luadebug

This commit is contained in:
2025-10-23 23:13:48 +02:00
parent 8cde56a4e8
commit 1cd7b378b6
5 changed files with 94 additions and 24 deletions

View File

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