Help for this page

Select Code to Download


  1. or download this
    my @list = map {"E$_"} (1..20);
    
    for my $k (sort {substr($a, 1) <=> substr($b, 1)} @list) {
        print "$k ";
    }
    
  2. or download this
    my @list = ("A15", "Y2", map {"E$_"} (1..20));
    
    ...
    ) {
        print "$k ";
    }