Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    ### the file doing the requiring
    ...
    require('tmp.pl');
    
    asdf();
    
  2. or download this
    #!/usr/bin/perl
    ### the file being required
    ...
    sub asdf { print "well howdy"; }
    
    1;
    
  3. or download this
    ### the output
    hi there
    well howdy