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

Monday, January 21, 2013

Codecademy Sample Solution: Feeling Included



class Angle
  include Math
  attr_accessor :radians
 
  def initialize(radians)
    @radians = radians
  end
 
  def cosine
    cos(@radians)
  end
end

acute = Angle.new(1)
acute.cosine

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts