10 lines
166 B
Lua
10 lines
166 B
Lua
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
|
|
end)
|