trainworld_computercraft/computer/5/startup.lua
2025-05-22 20:51:25 +02:00

11 lines
204 B
Lua

rednet.open("back")
--shell.run("report")
func1 = function()
sleep(2)
print("func1 terminate")
end
func2 = function()
sleep(1)
print("func2 teminate")
end
parallel.waitForAny(func1,func2)