<?php
print "Creating some objects:\n";
$c = new Circle(10);
print " Created circle \$c\n";
$s = new Square(10);
print " Created square \$s\n";
$container = new ShapeContainer();
$container->addShape($c);
$container->addShape($s);
print "\nA total of " . Shape::nshapes() . " shapes were created\n";
print "Delete the old references.";
$c = NULL;
$s = NULL;
print "\nA total of " . Shape::nshapes() . " shapes remain\n";
print "Delete the container.";
$container = NULL;
print "\nA total of " . Shape::nshapes() . " shapes remain\n";
print "Goodbye\n";