Guest User

Untitled

a guest
Oct 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. def metodo(&block)
  2. if block_given?
  3. yield
  4. end
  5.  
  6. faz_algo
  7. end
  8.  
  9. def faz_algo
  10. puts 'Terminou'
  11. end
  12.  
  13. metodo { puts 'hello' }
Add Comment
Please, Sign In to add comment