On Friday, October 14, Bruce Gray wrote: 
> because the `~` tilde character is not special to Raku.
> Instead of:
>     use lib '~/Documents/myRaku/gitHub/SequenceHelper/lib';
> , you need either of these:
>     use lib "%*ENV<HOME>/Documents/myRaku/gitHub/SequenceHelper/lib";
>     use lib  %*ENV<HOME> ~ '/Documents/myRaku/gitHub/SequenceHelper/lib';

There is also $*HOME, so this could be written as:

   use lib $*HOME.child('Documents/myRaku/gitHub/SequenceHelper/lib')

Brian

Reply via email to