Lua tricks
NOTE: This is not a Lua tutorial or reference, just a place to record something interesting when I read Lua source code, which is version 5.4.3 local t = {} local mt = { __tostring = function() return "willmafh's table" end } setmetatable(t, mt) print(t)…
Continue reading...