Last active
January 10, 2018 01:47
-
-
Save gbpereira/7f499d795e0811a85329 to your computer and use it in GitHub Desktop.
This file contains 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 Box | |
#attr_writer | |
#attr_reader | |
attr_accessor :width | |
def initialize(w, h) | |
@width = w | |
@height = h | |
end | |
def height=(h) | |
@height = h | |
end | |
def height | |
@height | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment