local function tree(t) for i, v in pairs(t) do if type(v) == "table" then tree(v) end end end tree(require("syscalls"))