Advertisement
asweigart

announce

Apr 23rd, 2017
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function hello()
  2. print('Hello there!')
  3. end
  4.  
  5. function goodbye()
  6. print('Goodbye!')
  7. end
  8.  
  9. function announce(func)
  10. print('About to call the function.')
  11. func()
  12. print('Function called.')
  13. end
  14.  
  15. announce(hello)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement