//ShapeDemo.java

public class ShapeDemo
{
    public static void main(String[] args)
    {
        /*
        ShapeBasics sb = new ShapeBasics();
        sb.drawHere();
        sb.drawAt(3);
        */

        RectangleInterface box = new Rectangle(5, 8, 4);
		box.drawHere();

		box.set(5, 5);
		box.setOffset(10);
		box.drawAt(2);
    }
}
