Help for this page

Select Code to Download


  1. or download this
    use Person;
    use strict;
    ...
        $person->name($_);
        push @employees, $person;
    }
    
  2. or download this
    foreach my $employee (@employees) {
    
        print $employee->name(), "\n";
    }
    
  3. or download this
        print ref($employee), "\n";
    
  4. or download this
    package Person;
    
    ...
    }
    
    1;