
public class RectangleTest {

	public static void main(String[] args) {

		Rectangle r1 = new Rectangle();
		System.out.println("This is the first rectangle.");
		r1.draw();
	}

}
