v0.7.0 - Added basic CLI tools: ls, cd, cp, mv, rm, lua

This commit is contained in:
TheWahlolly
2025-04-27 10:13:12 +03:00
parent 64a761fdde
commit 109c0beffb
19 changed files with 347 additions and 16 deletions
+7 -2
View File
@@ -1,4 +1,9 @@
local componentlib = {}
local componentlib
if table.copy then
componentlib = table.copy(component)
else
componentlib = {}
end
function componentlib.get(address)
checkArg(1, address, "string")
@@ -14,4 +19,4 @@ end
componentlib.invoke = component.invoke
return(componentlib)
return(componentlib)