Help for this page

Select Code to Download


  1. or download this
    @RecordNames[94]       = qw/$Destination  $DestinationType/;
    @RecordLengths[94]     = qw/$A8            A4/;
    
  2. or download this
    $RecordNames[94] = "$Destination";
    $RecordLengths[94] = "$A8";
    
  3. or download this
    $fields[94]  = [ qw/Destination DestinationType/ ];
    $lengths[94] =   qq/A8          A4             /  ;
    ...
    #
    # $data{Destination}
    # $data{DestinationType}