- or download this
# Foo.pm
package Foo;
...
$status;
} );
} #import
- 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 ;-(
- or download this
# bar2
print "Just Another Perl Hacker",$/;