Perl programming on mMPE/iX - August 2001
Manuals
Brands
HP Manuals
Software
MPE/iX 7.5 Operating System
21
22
23
24
25
26
27
28
29
30
HP World
Page
27
August 21
, 20
01
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
1
...
...
25
26
27
28
29
...
...
39