Skip to content

Instantly share code, notes, and snippets.

Created September 24, 2016 13:57
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 anonymous/9ba6f6bf2c99bc47dfa8ada16815b45d to your computer and use it in GitHub Desktop.
Save anonymous/9ba6f6bf2c99bc47dfa8ada16815b45d to your computer and use it in GitHub Desktop.
1 class Person
2 attr_accessor :name
3 def name
4 @autopilot
5 end
6 end
7
8 person = Person.new
9 person.name="mark"
10 test = person.name
11 puts name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment