Quotes help make search much faster. Example: "Practice Makes Perfect"

Saturday, January 19, 2013

Codecademy Sample Solution: When Good isn't Good Enough



class Creature
  def initialize(name)
    @name = name
  end
 
  def fight
    return "Punch to the chops!"
  end
end

# Add your code below!

class Dragon < Creature
  def fight
    puts "Instead of breathing fire..."
    super
  end
end

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts