you can do this: ```lua debug.traceback = function() return "Is this intentional?" end r = nil trace(r[1]) -- crashes with error "Is this intentional?" ``` or, alternatively: ```lua debug = nil r = nil trace(r[1]) -- crashes with error "error in error handling" ```
you can do this:
or, alternatively: