in reply to @INC: search sequence of directories
The parameters to use lib are added to the start of the perl search path. Saying
is almost the same as sayinguse lib LIST;
BEGIN { unshift(@INC, LIST) }
Perhaps
does what you want?BEGIN { push(@INC, LIST) }
|
---|