Ruby - Programming Language
This course covers the basics of programming in Ruby. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Classes & Objects

Lesson 29
Author : 🦒
Last Updated : November, 2017


book1 = Book.new() book1.title = "Harry Potter" book1.author = "JK Rowling" book1.numPages = 500

puts book1.title