Help for this page

Select Code to Download


  1. or download this
    package Person;
    use strict;
    ...
    print Dumper $object;
    
  2. or download this
    package Person;
    use Moose;
    ...
    print $_->get_Name, $/ for @objects;
    
  3. or download this