Advertisement
asweigart

scopetest

May 3rd, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function func1()
  2. local coal = 100
  3. print(coal)
  4. end
  5.  
  6. function func2()
  7. local coal = 200
  8. print(coal)
  9. end
  10.  
  11. function func3()
  12. print(coal)
  13. end
  14.  
  15.  
  16. local coal = 500
  17. print(coal)
  18.  
  19. func3()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement