> This is what the more complicated stuff I am doing. You can also use *your* Perl code in your Raku code.
Just turn your Perl code into a module, making sure to make "public" whatever the module should make public, then `use` it in your Raku code. You should be aiming to end up being able to write something like the following three line Raku program: use lib:from<Perl5> 'dir-where-your-new-module-is'; use your-new-module:from<Perl5>; RmdirAndLoop 'junk', 1, 3; -- love, raiph