Help for this page

Select Code to Download


  1. or download this
    my $i = 0;
    again:
    $array[$i] *= 2 unless $array[$i] =~ /[^0-9]/;
    goto again if ++$i <= $#array;
    
  2. or download this
    my $i = 0;
    {$array[$i] *= 2 unless $array[$i] =~ /[^0-9]/;
     redo if ++$i <= $#array;}
    
  3. or download this
    /[^0-9]/ or $_ *= 2 for @array;