Last active
December 18, 2015 16:09
-
-
Save sferik/5809615 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 Square < Rectangle | |
def initialize(side) | |
@side = side | |
end | |
def height | |
@side | |
end | |
def width | |
@side | |
end | |
def area | |
@side ** 2 | |
end | |
def to_s | |
puts " " + ("_" * (@side * 2)) | |
@side.times do | |
puts "|" + (" " * @side * 2) + "|" | |
end | |
puts " " + ("-" * (@side * 2)) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment