> A possible workaround is to mess with %INC:
> 
> delete $INC{FindBin};
> use FindBin;

Of course, as Eric corrected me, it should be 'require()' instead of
'use()', since use is done at compile time. do() is another option.

But require() wouldn't import tags, so ether use FQ variable $FindBin::Bin
or use:

  import FindBin;

if you need to import them.

Reply via email to