Re: NEWBIE Question: LUA wait() function?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: NEWBIE Question: LUA wait() function?
- From: "Jeff Pohlmeyer" <yetanothergeek@...>
- Date: 2008年3月12日 02:26:03 -0500
local vb="test.vbs"
local f=io.open(vb)
f:write("WScript.Sleep(1000)\n")
f:close()
for i=1,10 do
print("Waiting")
io.flush()
os.execute(vb)
end