Help for this page

Select Code to Download


  1. or download this
    sub subfactory
    {
        my $static = int(rand(100));
        return sub {print "my number is $static\n";}
    }
    
  2. or download this
    my $func=subfactory();
    $func->();
    undef $func;