11 lines
131 B
Lua
11 lines
131 B
Lua
|
|
local function tree(t)
|
|
for i, v in pairs(t) do
|
|
if type(v) == "table" then
|
|
tree(v)
|
|
end
|
|
end
|
|
end
|
|
|
|
tree(require("syscalls"))
|