Skip to content

Instantly share code, notes, and snippets.

@ColinTheRobot
Created October 20, 2015 20:40
Show Gist options
  • Save ColinTheRobot/7cfb62fcd9016ee05746 to your computer and use it in GitHub Desktop.
Save ColinTheRobot/7cfb62fcd9016ee05746 to your computer and use it in GitHub Desktop.
def person
def hello(name)
puts "Hello #{name}"
end
end
person.hello("Colin")
send(:hello, "Colin")
send(person, "Colin")
@ColinTheRobot
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment