Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl  -w
    use strict;
    ...
    $p->two(1);
    
    printf "two=%d, three=%d\n",$p->two, $p->three;
    
  2. or download this
    #!/usr/bin/perl  -w
    use strict;
    ...
    
    printf "two=%d, three=%d\n",$p->two, $p->three;