Help for this page

Select Code to Download


  1. or download this
    package Person;
    require 5.004;
    ...
        return 1;
    }
    1;
    
  2. or download this
    #!/usr/bin/perl
    use Person qw/name age exclaim/;
    ...
    $foo->Person::name("Stefan");
    $foo->Person::name(20);
    $foo->Person::exclaim();