Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $F=f();
    my $G=g();
    print $F->(),$G->(),"," for 1..4;
    
  2. or download this
    sub f { $x; sub { $x++ }}