Created
April 18, 2019 09:54
-
-
Save elcortez/9a8eca3a78f43c8ff3151569c2d67c9a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Building | |
attr_reader :width, :length | |
attr_accessor :name | |
def initialize(name, width, length) | |
@name = name | |
@width = width | |
@length = length | |
end | |
def floor_area | |
@width * @length | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment