Skip to content

Instantly share code, notes, and snippets.

/person.rb Secret

Created July 13, 2015 21:28
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