An example to abuse metatables
-- [[分類:沙盒]] p = setmetatable({}, { __index = function(mytable, key) return function() return key end end }) return p