Help for this page

Select Code to Download


  1. or download this
         my $temp = @$array[$index + 1];
         @$array[$index + 1] = @$array[$index];
         @$array[$index] = $temp;
    
  2. or download this
         t=a;
         a=b;
         b=t;
    
  3. or download this
         (a,b)=(b,a);
    
  4. or download this
     ($array->[$i+1],$array->[$i])=
             ($array->[$i],$array->[$i+1]);