Help for this page

Select Code to Download


  1. or download this
    (1 => 2, 3 => $x{1} )
    
  2. or download this
    (1, 2, 3, undef)
    
  3. or download this
    %x{1} = "old x sub 1";
    %x = 
      ( 1 => 2, 
        3 => $x{1} 
      );
    
  4. or download this
    @a = (2, @a)
    
  5. or download this
    @a = reverse sort @a;