Quick actions

cmd+k|ctrl+k

Navigation

Languages

SO: What is the best way to flush precompiled perl6 modules?

Snippet info

Language

Raku

Visibility

public

Author

raiph

Created

2019-08-14T20:01:14Z

Updated

2019-08-14T20:18:41Z

# https://stackoverflow.com/questions/57466611/what-is-the-best-way-to-flush-precompiled-perl6-modules?
BEGIN my $libpath = "../$*CWD.basename()";
use lib "$libpath/lib";
#use lib "$libpath/lib2";
say 42;
INFO