Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -wl
    sub gen_counter {
    ...
    5
    9
    10
    
  2. or download this
    #!/usr/bin/perl -wl
    sub gen_counter {
    ...
    $counter->(8);
    print $counter->();
    print $counter->();
    
  3. or download this
    sub gen_closure {
        my ($a, $b, $c) = @_;
    ...
            # Do the normal closure action on $a, $b and $c here
         }
    }