Help for this page

Select Code to Download


  1. or download this
    my(%sortListArr);
    $sortListArr{'1'} = 'A1';
    ...
    $sortListArr{'4'} = 'A4';
    $sortListArr{'5'} = 'A5';
    $sortListArr{'6'} = 'A6';
    
  2. or download this
    foreach $key (keys %sortListArr){
    print $sortListArr{$key},"\n";
    }
    
  3. or download this
    $sortListArr{'7'} = 'A7';
    
  4. or download this
    $sortListArr{'0'} = 'A1';
    $sortListArr{'1'} = 'A2';
    ...
    $sortListArr{'4'} = 'A5';
    $sortListArr{'5'} = 'A6';
    $sortListArr{'6'} = 'A7';