Perl programming on mMPE/iX - August 2001

HP World Page 27August 21, 2001
object usage example
#!/PERL/PUB/perl
use Foo; # refers to Foo.pm file
$it = new Foo(); # create a new object
$it->put('hello world'); # use the put method
printf "The value is %s\n",$it->get(); # use the get method