Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    require "test2.pl";
    
    print "Shouldn't ever print me!\n";
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    print "In required\n";
    
    exit;
    
  3. or download this
    > ./test.pl
    In required
    >