13 lines
151 B
PHP
13 lines
151 B
PHP
|
|
$point = new Point( 1, 5 );
|
||
|
|
$circle = new Circle( 1, 5, 6 );
|
||
|
|
|
||
|
|
$point->output();
|
||
|
|
// or
|
||
|
|
echo $point;
|
||
|
|
|
||
|
|
echo "\n";
|
||
|
|
|
||
|
|
$circle->output();
|
||
|
|
// or
|
||
|
|
echo $circle;
|