Files
skynet/service/console.lua
2012-08-30 23:31:33 +08:00

15 lines
238 B
Lua

local skynet = require "skynet"
skynet.dispatch()
skynet.start(function()
while true do
local cmd = io.read()
local handle = skynet.launch(cmd)
if handle == nil then
print("Launch error:",cmd)
end
skynet.yield()
end
end)