- or download this
sub new {
my $class = shift;
...
};
return bless $self, $class;
}
- or download this
$newexp->{_ID} = $#expenses + 1;
- or download this
$newexp->{_ID} = scalar @expenses;
- or download this
local $Data::Dumper::Indent = 3;
- or download this
# open file
my $file = do {local $/; <REPORT>};
- or download this
$self->{$hiddenkey} = shift if @_;