Skip to content

Instantly share code, notes, and snippets.

@coreyhaines
Created December 30, 2008 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coreyhaines/41758 to your computer and use it in GitHub Desktop.
Save coreyhaines/41758 to your computer and use it in GitHub Desktop.
class Rectangle
attr_accessor :width, :height
def initialize(width, height)
self.width = width
self.height = height
end
def area
width * height
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment