Skip to content

Instantly share code, notes, and snippets.

@lastcanal
Last active December 14, 2015 01:29
Show Gist options
  • Save lastcanal/5006737 to your computer and use it in GitHub Desktop.
Save lastcanal/5006737 to your computer and use it in GitHub Desktop.
table: 0x7fe851c06b50
hello
table: 0x7fe851c06b50
hello hello2
local mt =
{
__call = function(table, value)
print(table)
table[#table + 1] = value
return table
end
}
local mt_obj = setmetatable({ }, mt)
print(unpack(mt_obj("hello")))
print(unpack(mt_obj("hello2")))
{error,{lua_error,{illegal_index,<<"hello">>,6.0}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment