- or download this
package Shared;
use warnings;
...
}
__PACKAGE__
- or download this
#!/usr/bin/perl
use warnings;
...
for my $pair (test_list()) {
print "@$pair\n";
}
- or download this
package Shared_OO;
use warnings;
...
__PACKAGE__
- or download this
#!/usr/bin/perl
use warnings;
...
for my $pair ($o->test_list) {
print "@$pair\n";
}