Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local meta = {
- __newindex = function(tbl, index, value)
- print("Indexing not allowed....")
- end;
- __index = function(tbl, index)
- print("STOP IT!")
- end;
- }
- setmetatable(term, meta)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement