working on require needs to be done before EOW

This commit is contained in:
2025-11-10 09:50:32 -05:00
parent fdb67d9afb
commit b288bb3cae
124 changed files with 9828 additions and 1 deletions

10
src/disks/1h/lib/array/x Normal file
View File

@@ -0,0 +1,10 @@
local lib = {}
function lib.create()
local array = {}
return setmetatable(array,{
__add=function(t1, t2)
end
})
end