http://qs321.pair.com?node_id=1217284


in reply to Re: Overloading Weirdness
in thread Overloading Weirdness

"." means the current work directory, not the script's directory.

use lib qw(.);
should be
use FindBin qw( $RealBin ); use lib $RealBin;