Skip to content

Instantly share code, notes, and snippets.

@WA9ACE
Created September 7, 2022 15:59
Show Gist options
  • Save WA9ACE/b7374e490149bf1746cb656dadfe88bb to your computer and use it in GitHub Desktop.
Save WA9ACE/b7374e490149bf1746cb656dadfe88bb to your computer and use it in GitHub Desktop.
class A
def initialize
puts 'A'
end
end
class B < A
def initialize
puts 'B'
end
end
class C < B
def inintialize
super
end
end
c = C.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment