Guest User

Untitled

a guest
Jan 23rd, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Person
  2. def initialize(name)
  3. attr_accessor:name
  4. end
  5.  
  6. def initialize(age)
  7. attr_accessor:age
  8. end
  9. end
  10.  
  11. person1 = Person.new
  12. person1.name = "Andre"
  13. person1.age = 22
Add Comment
Please, Sign In to add comment