added more hpv funcs and made primshell

This commit is contained in:
2026-01-16 14:17:28 -05:00
parent bd8fe50770
commit 70532f6e2c
14 changed files with 321 additions and 121 deletions

View File

@@ -0,0 +1,9 @@
local fs = require("sys.fs")
local stuff = fs.list("")
for i,v in ipairs(stuff) do
if fs.isDir(v) then
print(v.."/")
else
print(v)
end
end