Classes and Instances
Know
A class is a template; an instance is one object built from it. The initialiser runs at construction and sets up instance state.
Apply
Give every attribute a value in the initialiser so no instance starts half-built.
Watch out
Forgetting the instance parameter on a method, which produces a confusing argument-count error.
Study move
Write a class with two attributes and construct three instances with different values.
