Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.14 KB | None | 0 0
  1. foo = { bar = 3 }
  2. foo_mt = {}
  3. setmetatable(foo, foo_mt)
  4.  
  5. function foo_mt:__index(key, value)
  6.   return "Nope!"
  7. end
  8.  
  9. print(foo.bar)
  10. print(foo.baz)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement