Advertisement
Guest User

Untitled

a guest
Aug 7th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. -- foo.lua
  2. global = 1
  3. require('./bar')
  4.  
  5. -- bar.lua
  6. print(global)
  7.  
  8. =====
  9. lua foo.lua => 1
  10. luvit foo.lua => nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement