Advertisement
Guest User

Untitled

a guest
Oct 30th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.21 KB | None | 0 0
  1. class Library
  2.   attr_accessor :games
  3.  
  4.   def initialize(games)
  5.     self.games = games
  6.   end
  7.  
  8.  
  9. end
  10.  
  11. class Library
  12.   attr_accessor :games
  13.  
  14.   def initialize(games)
  15.     @games = games
  16.   end
  17.  
  18.  
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement