немножко раскидал функции по отдельным файлам && add helloWorld example

This commit is contained in:
2025-04-05 20:29:18 +05:00
parent 5dc9f2ca31
commit 96eb2c55d3
13 changed files with 410 additions and 267 deletions

View File

@@ -1,3 +1,10 @@
for i, v in pairs(require("syscalls")) do
print(i, v)
local function tree(t)
for i, v in pairs(t) do
if type(v) == "table" then
tree(v)
end
end
end
tree(require("syscalls"))