Last active
May 24, 2018 15:51
-
-
Save Adzz/b95ffcde6f2fab831ac9a0d18f8df5d3 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 | |
def initialize(side) | |
@side = side | |
end | |
def area() | |
@side * @side | |
end | |
end | |
Square.new(10).area #=> 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment