Help for this page

Select Code to Download


  1. or download this
    # Foo.pm
    package Foo;
    ...
            $status;
        } );
    } #import
    
  2. or download this
    # bar
    use Foo;
    ...
    }
    #eval $source;  # source is not filtered  ;-(
    eval 'use Foo;'.$source;  # even with importing again, source is not f
    +iltered  ;-(
    
  3. or download this
    # bar2
    print "Just Another Perl Hacker",$/;