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