Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- What's the difference between
- function a()
- local function b()
- end
- end
- -- and
- function c()
- function d()
- end
- end
- -- both b and d are locals, no?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement