Skip to content

Instantly share code, notes, and snippets.

@MiriamNeubauer
Forked from OfTheDelmer/person.rb
Created November 4, 2013 02:49
Show Gist options
  • Select an option

  • Save MiriamNeubauer/7297445 to your computer and use it in GitHub Desktop.

Select an option

Save MiriamNeubauer/7297445 to your computer and use it in GitHub Desktop.
class Person
def initialize(name="no name")
@name = name
end
# Set method it
def name=(other_name)
@name = other_name
end
# Get method
def name
@name
end
def say_hello
puts "Hello, I am #{@name}"
end
end
person = Person.new()
# Setter method for name
person.name = "Smith"
person.say_hello
# Getter method for name
puts person.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment