Skip to content

Instantly share code, notes, and snippets.

View Dickyrdiar's full-sized avatar
🐈
meow........

Dicky Ardiar Dickyrdiar

🐈
meow........
View GitHub Profile
@Dickyrdiar
Dickyrdiar / pholymorphims.rb
Created August 29, 2023 09:16
pholymorphism example
class Rectangle < Shape
attr_accessor :width, :height
def initialize(width, height)
@width = width
@height = height
end
def area
@width * @height