Skip to content

Instantly share code, notes, and snippets.

@petscheit
Last active September 28, 2015 16:56
Show Gist options
  • Save petscheit/83fcfbce055a809d8999 to your computer and use it in GitHub Desktop.
Save petscheit/83fcfbce055a809d8999 to your computer and use it in GitHub Desktop.
class FamilyMemebers
def name
@name # returns @name variable value
end
def set_name(name)
@name = name # assigns new value to @name when called with argument
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment