Skip to content

Instantly share code, notes, and snippets.

@searls
Created April 29, 2011 16:17
Show Gist options
  • Save searls/948558 to your computer and use it in GitHub Desktop.
Save searls/948558 to your computer and use it in GitHub Desktop.
class Bunny
attr_accessor :carrots, :lettuce_heads, :garden, :mate
def eat
@carrots.nom
@lettuce_heads.nom
end
def find_carrots
@garden.visit do |soil|
@carrots << soil.dig_up_carrot
end
end
def make_babies
@mate.mate do
Bunny.new
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment