Help for this page

Select Code to Download


  1. or download this
    use strict;             # leak occurs whether strict is used or not
    
    ...
      $sub_ref = sub { &$sub_ref(); };
      return 0;
    }
    
  2. or download this
    sub leak {
      my $factorial_sub_ref;
    ...
    
      return 0;
    }