Skip to content

Instantly share code, notes, and snippets.

/person.rb Secret

Created July 13, 2015 21:28
Show Gist options
  • Save anonymous/663724fc10283daee3c7 to your computer and use it in GitHub Desktop.
Save anonymous/663724fc10283daee3c7 to your computer and use it in GitHub Desktop.
class Person
attr_accessor :name
def initialize(attributes = {})
@name = attributes[:name]
end
def self.greet
"hello"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment