Help for this page

Select Code to Download


  1. or download this
      our $fred = 78 ;
      local $fred = $fred ? "Still $fred" : 'undef' ;
    
  2. or download this
      $fred = 78 ;
      $fred = d($fred) + $fred ;
    
      sub d { $_[0] = 10 ; return 1 ; } ;