Classes and Objects:
*Simplest Possible Class
class TrivialClass {}
A class consists at a minimum of the class keyword, a name, and a body, which might be empty.
You instantiate a class with the new operator.
TrivialClass tc = new TrivialClass();