Help for this page

Select Code to Download


  1. or download this
    sub outer {
       sub inner {
       }
    }
    
  2. or download this
    sub outer {
       BEGIN {
    ...
          };
       }
    }
    
  3. or download this
    sub outer {
       *inner = sub {
       };
    }
    
  4. or download this
    sub outer {
       my sub inner {
       }
    }