In this chapter, we'll start off with the minimal code for a class.

This will allow us to compile the class, and get things rolling.

Recall our previous work defining object types.

Let's now start off by coding the class named Person.

Coding a Class
This is the starting point for coding a class. It should compile.

It is the shell that we will later fill with code.
public class Person {


}

Let's code it: