Guest User

Untitled

a guest
Apr 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. greet = proc do
  2. puts 'hello there'
  3. end
  4.  
  5. greetPointer = greet
  6. greetPointer()
  7.  
  8. # as opposed to
  9.  
  10. def greet
  11. puts 'hello there'
  12. end
  13.  
  14. justNil = greet
Add Comment
Please, Sign In to add comment