Perl programming on MPE/iX - April 2002

Solution Symposium Page 28April 4, 2002
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