Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
debug.getsafeenv(func: function): table
func
function
table
local env = debug.getsafeenv(print) print("Safe env type: ", type(env))
local env = debug.getsafeenv(function() end) assert(env == getgenv(), "Local functions should share executor environment by default")