- or download this
my %hashrow = ( # ((( round
Date => $row[0],
Type => $row[1],
Amount => $row[2],
Ending_balance => $row[3],
);
- or download this
my %hashrow = (
Date => $row[0],
Type => $row[1],
Amount => $row[2],
Ending_balance => $row[3],
); # ))) round
- or download this
my $hashrow = { # {{{ curly
Date => $row[0],
Type => $row[1],
Amount => $row[2],
Ending_balance => $row[3],
}; # }}} curly
- or download this
push @transactions, { # {{{ curly
Date => $row[0],
Type => $row[1],
Amount => $row[2],
Ending_balance => $row[3],
}; # }}} curly