aboutsummaryrefslogtreecommitdiff
path: root/test/excepttest.lua
blob: ce9f197b2fdd85bce78b42db5b97e8d5dea0d08a (plain)
1
2
3
4
5
6
local socket = require("socket")
try = socket.newtry(function()
    print("finalized!!!")
end)
try = socket.protect(try)
print(try(nil, "it works"))