- or download this
use strict;
use warnings;
...
our $add;
say $add;
}
- or download this
package Acme::Sample::Counter;
...
my $self = shift;
return $$self;
}
- or download this
my $counter = new Acme::Sample::Counter ();
$counter->count; # add 1
$counter->count(10); # add 10
say $counter->read;