Files
aziascreations 243796e188 Initial commit
Update gh-pages.yml, packaging.yml, and 6 more files...
2026-04-09 18:01:01 +02:00

12 lines
198 B
Lua

local sleep_lib = require("sleep")
print("Now sleeping for 3 seconds...")
sleep_lib.sleep_s(3)
print("Now sleeping for 500 milliseconds...")
sleep_lib.sleep_ms(500)
print("I'm back and awake")