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