Help for this page

Select Code to Download


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