Help for this page

Select Code to Download


  1. or download this
         {
             local $var = $newvalue;
             some_func();
             ...
         }
    
  2. or download this
         {
             $oldvalue = $var;
    ...
         continue {
             $var = $oldvalue;
         }