// A very simple class that defines a cartesian point public class Point { int x; // an "instance variable" defining the point's x value int y; // an "instance variable" defining the point's y value }