Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function hello()
- print('Hello there!')
- end
- function goodbye()
- print('Goodbye!')
- end
- function announce(func)
- print('About to call the function.')
- func()
- print('Function called.')
- end
- announce(hello)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement