Skip to content

Instantly share code, notes, and snippets.

@Adzz
Last active May 24, 2018 15:51
Show Gist options
  • Save Adzz/b95ffcde6f2fab831ac9a0d18f8df5d3 to your computer and use it in GitHub Desktop.
Save Adzz/b95ffcde6f2fab831ac9a0d18f8df5d3 to your computer and use it in GitHub Desktop.
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