Help for this page

Select Code to Download


  1. or download this
    sub instantiator {
      my $state = shift;
    ...
        return sub { ... make a complete hash of things ... }
      }
    }
    
  2. or download this
    package Foo;
    
    ...
    $f = Foo::instantiate( ... );
    
    $f->( $a, $b, $c );