- or download this
use strict;
use warnings;
...
runonce();
myfirstaddin::runonce();
mysecondaddin::runonce();
- or download this
# myfirstaddin.pm
...
sub runonce { print "This is file myfirstaddin."; }
1;
- or download this
# mysecondaddin.pm
...
sub runonce { print "This is file mysecondaddin."; }
1;