Help for this page

Select Code to Download


  1. or download this
    foreach my $line (@record) {
    ($timestamp, $current_time, $funds, $action, $current_funds) = split "
    +\t",$line;
    ...
        $count += 1;
        }
    }
    
  2. or download this
    for my $line (@record[0..9]) {
      ($timestamp, $current_time, $funds, $action, $current_funds) = split
    + "\t",$line;
      $member{$timestamp} = [$current_time, $funds, $action, $current_fund
    +s];
    }