Skip to content

Instantly share code, notes, and snippets.

@jonesdeini
Created October 1, 2012 18:09
Show Gist options
  • Save jonesdeini/3813407 to your computer and use it in GitHub Desktop.
Save jonesdeini/3813407 to your computer and use it in GitHub Desktop.
class X
def initialize
puts "hey bro"
end
end
class Y < X
def initialize
super
end
end
class Z < Y
def initialize
super
end
end
Z.new
#=> "hey bro"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment