- or download this
package pm1187349;
use warnings;
...
sub someFunction {
print "I am some function\n";
}
- or download this
use warnings;
use strict;
...
# use them
pm1187349::someFunction();
print "someScalar = ${pm1187349::someScalar}\n";
- or download this
use warnings;
use strict;
...
# use them
someFunction();
print "someScalar = ${someScalar}\n";