Initialize Method
Lesson 30Author : 🦒
Last Updated : November, 2017
Code
class Book
     attr_accessor :title, :author
     def initialize(title, author)
          @title = title
          @author = author
     end
end
book1 = Book.new("Harry Potter", "JK Rowling")
# book1.title = "Half-Blood Prince"
puts book1.title