Skip to content

Instantly share code, notes, and snippets.

@danielmoralesp
Last active March 15, 2019 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielmoralesp/9e25fe3cf80c0d0adfd60d2830d8619e to your computer and use it in GitHub Desktop.
Save danielmoralesp/9e25fe3cf80c0d0adfd60d2830d8619e to your computer and use it in GitHub Desktop.
class Person
def initialize(name)
@name = name
end
def change_name=(other_name)
@name = other_name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment