This commit is contained in:
2026-04-06 14:17:45 -07:00
commit 6451e59c3e
5 changed files with 281 additions and 0 deletions

10
test.lua Normal file
View File

@@ -0,0 +1,10 @@
local eplib = require("libs.entrypointlib")
local function test()
while true do
print(os.pullEvent("network_packet"))
eplib.send("test",9)
end
end
parallel.waitForAny(test,eplib.loop)