To create a new class, we start with the class keyword, a name, and braces.
class
class Book { }
Anytime we create a new class, we have to make sure the name starts with an uppercase letter.