Help for this page

Select Code to Download


  1. or download this
    'delete $INC{"Foo"}; use Foo;'
    
  2. or download this
    package Filter::Test;
    use Filter::Simple;
    ...
    ;
    
    print 'Filter::Test loaded';
    
  3. or download this
    #! perl -slw
    use strict;
    ...
    eval "print 'Just another perl hacker'";
    
    #require 'My/filtertest.pm';
    
  4. or download this
    package My::filtertest;
    
    ...
    eval "print 'Just another perl hacker';";
    
    1;
    
  5. or download this
    P:\test>296091
    Filter::Test loaded
    ...
            (Do you need to predeclare PRINT?)
    
    P:\test>