mirror of
https://github.com/ivabus/pantry
synced 2024-11-13 03:55:18 +03:00
8 lines
157 B
Lua
8 lines
157 B
Lua
|
local uv = require('luv')
|
||
|
local timer = uv.new_timer()
|
||
|
timer:start(1000, 0, function()
|
||
|
print("Awake!")
|
||
|
timer:close()
|
||
|
end)
|
||
|
print("Sleeping");
|
||
|
uv.run()
|