mirror of
https://github.com/vxcontrol/lualibs-winapi.git
synced 2026-07-01 13:54:03 -04:00
18 lines
261 B
Lua
18 lines
261 B
Lua
require 'winapi'
|
|
|
|
l = 1
|
|
winapi.make_timer(400,function()
|
|
print 'bonzo'
|
|
l = l + 1
|
|
if l > 10 then os.exit() end
|
|
end)
|
|
|
|
k = 1
|
|
winapi.make_timer(300,function()
|
|
print 'alice'
|
|
k = k +1
|
|
if k > 5 then return true end
|
|
end)
|
|
|
|
winapi.sleep(-1)
|