- or download this
package testlib;
our $var = "Lord only knows if this will work...";
1;
- or download this
# testlib.pm
package testlib;
...
our $var = "Lord only knows if this will work...";
1;
- or download this
#!/usr/bin/perl -w
# test.pl
...
print $var;
exit;