public class RectangleTester { // Calling a Non-void Method // 2_02_6 Rectangle Tester public static void main(String[] args) { // Create a rectangle with width 5 and height 12 Rectangle rect = new Rectangle(5, 12); // Then print it out System.out.println(rect); } }