7 lines
159 B
Lua
7 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)
|