Files
lualibs-winapi/examples/test-sleep.lua
T
2011-07-11 15:38:23 +02:00

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)