Guest User

Untitled

a guest
Jun 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. methods = ["say", "sing", "shout"]
  2. methods.each do |method|
  3. # Man->method("Hello world!")
  4. Man->method "Hello world!"
  5. end
  6.  
  7. # The actual way to do this.
  8. methods.each do |method|
  9. Man.send(method.intern, "Hello world!")
  10. end
Add Comment
Please, Sign In to add comment