Help for this page

Select Code to Download


  1. or download this
    push(@$outputRef, "$symbol,$side,$account,$shares");
    
  2. or download this
    push(@$outputRef, [ $symbol,$side,$account,$shares ]);
    
  3. or download this
    push(@$outputRef, {
        symbol => $symbol,
    ...
        account => $account,
        shares => $shares,
    });
    
  4. or download this
    my @sorted = sort{
        $a->[1] cmp $b->[1] || $a->[0] cmp $b->[0] || $a->[2] cmp $b->[2]
    } map { [split(',', $_)] } @$outputref;