Skip to content

Instantly share code, notes, and snippets.

@iamjwc
Created July 8, 2011 19:01
Show Gist options
  • Save iamjwc/1072535 to your computer and use it in GitHub Desktop.
Save iamjwc/1072535 to your computer and use it in GitHub Desktop.
class Parent
def self.print_name
puts self.name
end
def self.name
"Parent"
end
end
class Child < Parent
def self.name
"Child"
end
def self.print_name
puts "Child says"
super
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment