Created
October 24, 2009 07:43
-
-
Save edthix/217431 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Robots with class_eval | |
class Robot | |
end | |
def add_machinegun_to_robots | |
Robot.class_eval %Q( | |
def machine_guns | |
p "I'm loaded with machine gun" | |
end | |
) | |
end | |
robot1 = Robot.new | |
add_machinegun_to_robots | |
robot1.machine_guns # I'm loaded with machine gun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment