Skip to content

Instantly share code, notes, and snippets.

@timonv
Created April 9, 2013 13:02
Show Gist options
  • Save timonv/5345533 to your computer and use it in GitHub Desktop.
Save timonv/5345533 to your computer and use it in GitHub Desktop.
class Person
def self.get_name
persons_name
end
def self.persons_name
"Sam"
end
private_class_method :persons_name
end
puts "Hey, " + Person.get_name
puts "Hey, " + Person.persons_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment