in reply to Re^2: Using @INC with PAR
in thread Using @INC with PAR

Just include the .pm files in the same directory and inlude the current direcotry "." in @INC. You can use -I like in this example:
#!/usr/bin/perl -w -I. use MyModule.pm # in the same dir as this script