git-subtree-dir: mulit git-subtree-mainline: 69233e59c8a641ceb835daae961ebce1127faa79 git-subtree-split: 285fa7e933d1986bcbd354294c05cee40ef43cea
12 lines
431 B
Lua
12 lines
431 B
Lua
package.path="../?.lua;../?/init.lua;"..package.path
|
|
local GLOBAL,sThread=require("multi.integration.lanesManager").init()
|
|
cmd=multi:newSystemThreadedExecute("SystemThreadedExecuteTest.lua") -- This file is important!
|
|
cmd.OnCMDFinished(function(code) -- callback function to grab the exit code... Called when the command goes through
|
|
print("Got Code: "..code)
|
|
end)
|
|
multi:newTLoop(function()
|
|
print("...")
|
|
end,1)
|
|
multi:mainloop()
|
|
|