Help for this page

Select Code to Download


  1. or download this
             $FirstItem[$FirstItem[$Index]]
  2. or download this
          sub Read_File
          {
               while(<CLAIMS>)
    ...
                     push (@data, [unpack ("A8 A6 A2", $_)]);
               }
          }
    
  3. or download this
          my ($record) = $data[$n];  # Index starts at 0, not 1
    
          # AoH
    ...
    
          # AoA
          print "$record->[0] | $record->[1] | $record->[2]\n";