Perl programming on MPE/iX - February 2001

February 9, 2001
Solution Symposium
Page 32
hp e3000
perl
programming
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(); # get method