Help for this page

Select Code to Download


  1. or download this
    @a = sort @a;
    foreach (@a) { ... }
    
  2. or download this
    foreach (sort @a) { ... }
    
  3. or download this
    my @a = (1);
    foreach (@a) { push @a, 1; }