RosettaCodeData/Task/Exceptions/Lua/exceptions-4.lua
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

6 lines
159 B
Lua

function throw_error_with_argment(argument)
return "hello!"
end
status, errmsg = pcall(throw_error_with_argment, "foobar 123")
print("errmsg = ", errmsg)