What are the differences ( if any ) for me as the user of the package "Test::Test" between this two package-versions:
Test::Test;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(hello);
use strict; use warnings;
our $c = 3;
sub hello {
print "$_\n" for 0 .. $c;
}
.
Test::Test;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(hello);
$c = 3;
sub hello {
print "$_\n" for 0 .. $c;
}