Help for this page

Select Code to Download


  1. or download this
    my $var = 5;
    {
      eval {$var = 3; next};
      $var = 4;
    }
    print $var; # 3 !!
    
  2. or download this
    eval {{
      $i++;
      redo unless do_sth($i);
    }}