Help for this page

Select Code to Download


  1. or download this
            my sub for_inc {
                my ($coderef, $filename) = @_;
    ...
            };
    
            my $for_inc_ref = \&for_inc;
    
  2. or download this
     
    my $for_inc_ref = sub 
        {
            my ($coderef, $filename) = @_;
            return \$source
        };