Help for this page

Select Code to Download


  1. or download this
    (defun foo (n) 
       (labels ((f (i) (+ i m)))
               f)
    )
    
  2. or download this
    sub foo {
       my $n = shift;
    ...
       }
       return \&f;
    }
    
  3. or download this
    sub foo {
       my $n = shift;
    ...
       };
       return $f;
    }