Skip to content

Instantly share code, notes, and snippets.

@eladmeidar
Created January 29, 2014 20:49
Show Gist options
  • Save eladmeidar/8696754 to your computer and use it in GitHub Desktop.
Save eladmeidar/8696754 to your computer and use it in GitHub Desktop.
basic book
class Book
def title_and_author(title, author)
@title = title
@author = author
end
def description
"#{@title} was written by #{@author}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment