This commit is contained in:
Squibid 2025-11-23 17:31:47 -05:00
parent 8537a9a127
commit 1a764d6a14
Signed by: squibid
GPG key ID: BECE5684D3C4005D
9 changed files with 332 additions and 329 deletions

View file

@ -1,9 +1,9 @@
wom.register_subcmd("helloworld", function()
print("hello world")
for i in wom.fs.dir(".") do
if wom.fs.type(i) == "directory" then
print(i)
end
end
for i in wom.fs.dir(".") do
if wom.fs.type(i) == "directory" then
print(i)
end
end
end)