Help for this page

Select Code to Download


  1. or download this
    @ary = (34, 'a', '+', \0, 'y','Z');
    
  2. or download this
    @ary = sort { $b cmp $a } @ary;
    
  3. or download this
     @h{(a..z)} = (A..Z);
    %h = map { $_ => $h{$_} } sort { $b cmp $a } keys %h;