in reply to Curious behavior of Use
Say your module is in /home/geoffleach/src/lib/My/Example.pm, something like this should work:
# from memory, not tested before posting ... BEGIN { unshift @INC, "/home/geoffleach/src/lib"; }; use My::Example; ...
It's important that the BEGIN block is before the use statement.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Curious behavior of Use
by ikegami (Patriarch) on Feb 24, 2025 at 16:22 UTC |