Skip to content

Instantly share code, notes, and snippets.

@oguzcanhuner
Created October 14, 2013 13:52
Show Gist options
  • Save oguzcanhuner/6975991 to your computer and use it in GitHub Desktop.
Save oguzcanhuner/6975991 to your computer and use it in GitHub Desktop.
class Library
def add_book(book)
end
end
class Book
def initialize(name)
@name = name
end
def name
@name
end
end
library = Library.new
library.add_book(Book.new("Great Gatsby"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment