Guest User

Untitled

a guest
Apr 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class Table
  2. def initialize(legs)
  3. @tabletop = []
  4. @num_legs = legs
  5. end
  6. def put_on(something)
  7. @tabletop.push something
  8. end
  9. def look_at
  10. p @tabletop
  11. end
  12. end
  13.  
  14. a_table = Table.new(4)
  15. a_table.put_on 1
  16. a_table.put_on 2
  17.  
  18. p a_table.look_at
Add Comment
Please, Sign In to add comment