mirror of
https://github.com/lune-org/lune.git
synced 2025-01-07 20:09:09 +00:00
13 lines
178 B
Lua
13 lines
178 B
Lua
--!nocheck
|
|
--!nolint UnknownGlobal
|
|
|
|
print("Sleeping for 3 seconds...")
|
|
|
|
sleep(1)
|
|
print("1 second passed")
|
|
|
|
sleep(1)
|
|
print("2 seconds passed")
|
|
|
|
sleep(1)
|
|
print("3 seconds passed")
|