How to add a relative directory to @INC
Solution 5 - Path::Tiny
The solution that I currently like the best, involves the use of the Path::Tiny module
use Path::Tiny qw(path);
use lib path($0)->absolute->parent(2)->child('lib')->stringify;
February 8, 2022 at 1:49:21 PM EST
*
FILLER