Skip to content

Instantly share code, notes, and snippets.

@hemalvarambhia
Created October 5, 2022 20:30
Show Gist options
  • Save hemalvarambhia/b529eb628e34cff2aea7946b5ee0015f to your computer and use it in GitHub Desktop.
Save hemalvarambhia/b529eb628e34cff2aea7946b5ee0015f to your computer and use it in GitHub Desktop.
An Example of a Very Basic Class
class ComplexNumber
def initialize(real, imaginary)
@real = real
@imaginary = imaginary
end
def to_s
"#{@real} + #{@imaginary}i"
end
end
ComplexNumber.new(1, 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment