1 2 3 4 5 6 7 8 9 10
local llby = require"lullaby" local th = llby.thread.async(function(res) print("start") os.execute("sleep 4") print("thread") end) print("outside") th:await()