Help for this page

Select Code to Download


  1. or download this
    perl -e '
    NEXT: {
      local $a.=$x++;
    ...
      print $a;             # prints only 9
    }
    '
    
  2. or download this
    $x=0;
    {
    ...
      print $a,$b;             
     }
    }
    
  3. or download this
    $x=0;
    {
    ...
      goto NEXT if $x++<1;
      print $a,$b;             
    }