Skip to content

Instantly share code, notes, and snippets.

@8th-Light-Blog
Created June 28, 2011 20:18
Show Gist options
  • Save 8th-Light-Blog/1052087 to your computer and use it in GitHub Desktop.
Save 8th-Light-Blog/1052087 to your computer and use it in GitHub Desktop.
Blog Title: Meta-programming Comes Naturally to Intern
Author: Doug Bradbury
Date: June 22nd, 2009
tree = OrangeTree.new
command = gets
tree.command
tree = OrangeTree.new
command = gets.chomp.to_sym
tree.send(command) if tree.responds_to?(command)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment