Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function foo(a, b)
- return tostring(a) + b
- end
- local status, err = pcall(foo, 4, {"test", 123})
- if not status then
- print("Error while running program: " .. tostring(err))
- else
- print("foo() returned value " .. err)
- end
Advertisement
Add Comment
Please, Sign In to add comment