Advertisement
sci4me

Lua Local vs. Global function in function?

Mar 1st, 2018
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.17 KB | None | 0 0
  1. -- What's the difference between
  2.  
  3. function a()
  4.     local function b()
  5.  
  6.     end
  7. end
  8.  
  9. -- and
  10.  
  11. function c()
  12.     function d()
  13.  
  14.     end
  15. end
  16.  
  17. -- both b and d are locals, no?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement