ferrite-lua/examples/test.lua
2026-03-20 21:04:24 +02:00

9 lines
113 B
Lua

table = { 1, 2, 3 }
SETMETATABLE(table, {
__add = function ()
return 1
end
})
print(table + 5);