- or download this
package Your::Package;
- or download this
package My::Module;
use Exporter qw(import);
@EXPORT_OK = qw(sub names here);
- or download this
package My::Package;
...
print $lines;
}
}
- or download this
use strict;
use warnings;
...
open my $file, '<', shift;
print_lines($file);