h12 dev demo

This commit is contained in:
JamesonHuang
2015-08-30 16:36:32 +08:00
parent 256defe458
commit fa4160ec02
5421 changed files with 291961 additions and 1 deletions

View File

@ -0,0 +1,15 @@
function testPcall()
rint("error")
end
local r, msg = pcall(function()
testPcall()
end)
if r == false then
print("error msg:"..msg)
print("end")
end
-- rint("error")