iteration

This commit is contained in:
2023-10-08 04:14:52 -04:00
parent 7c580e25ea
commit 23839bfcbe
2 changed files with 18 additions and 5 deletions

View File

@ -34,4 +34,9 @@ end
function install(package)
io.write("Installing " .. package .. "\n")
download_lua("packages/" .. package .. ".lua", bin_path .. package .. ".lua")
end
function remove(package)
io.write("Removing " .. package .. "\n")
fs.delete(bin_path .. package .. ".lua")
end