Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class Information
  2.  
  3.  
  4. def initialize(age, name, hometown)
  5. @age = age
  6. @name = name
  7. @hometown = hometown
  8. end
  9.  
  10. def print_info
  11. puts "Hello #{@name}! You are #{@age} and you live in #{@hometown}."
  12. end
  13. end
  14.  
  15. info = Information.new(25, "Kyle", "Vallejo")
  16. info.print_info
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement