// net/phpvim.net/code/Painter.php
require_once 'net/phpvim/code/Shape.php';
import net::phpvim::code;
import net::phpvim::code::Shape;
import net::phpvim::code::Shape as CPC_Shape;
// Create an instance object for Shape class
$shape0 = new net::phpvim::code::Shape();
$shape1 = new code::Shape();
$shape2 = new Shape();
$shape3 = new CPC_Shape();
// output: draw() in Shape.php
print net::phpvim::code::draw();
print code::draw();
// output: net::phpvim::code
print code::getCurrentNS();
/* vim: set expandtab tabstop=4 shiftwidth=4: */