// Allison Obourn, CSE 142 // Client that uses our custom Point class. // Point.java must be in the same folder. public class PointClient { public static void main(String[] args) { Point p1 = new Point(); Point p2 = new Point(); p1.x = 42; p1.y = 7; p2.x = 9; p2.y = 4; } }