> On 14/09/2018 12:52, Todd Chester wrote: >> Hi All, >> >> With a one liner, how to I load a module that resides in the >> current directory?
On 09/14/2018 03:58 AM, Timo Paulssen wrote:
The equivalent of "use lib 'blah'" on the commandline is "-I blah", just like "-M bloop" is the equivalent of "use 'bloop'" in code. HTH - Timo
Hi Timo, Perfect! Thank you! $ perl6 -I./ -M./PrintColors -e 'PrintRed "Hi\n";' Hi -T