9 lines
113 B
Lua
9 lines
113 B
Lua
|
|
table = { 1, 2, 3 }
|
|
SETMETATABLE(table, {
|
|
__add = function ()
|
|
return 1
|
|
end
|
|
})
|
|
|
|
print(table + 5); |