in reply to Re^2: Do not working as expected on Windows
in thread Do not working as expected on Windows

@INC is the search path used by do, require and use. use lib adds a path to the front of @INC. That could only lead to a problem if you have two identically named modules in different paths. Then, do/require/use might load the wrong one.