Skip to content

Instantly share code, notes, and snippets.

@edthix
Created October 24, 2009 07:43
Show Gist options
  • Save edthix/217431 to your computer and use it in GitHub Desktop.
Save edthix/217431 to your computer and use it in GitHub Desktop.
# 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