- or download this
use strict;
use warnings;
...
our $wibble = 'Hello World';
1;
- or download this
use strict;
use warnings;
...
}
print $noname1::wibble;
- or download this
Hello World
- or download this
use strict;
use warnings;
use noname1;
print $noname1::wibble;