Untitled
#!/usr/bin/env raku
subset FileStr of Str where { .IO.e && !.IO.f };
multi sub open-xml(IO::Path(FileStr) $src) { say 'Opening from file string' }
open-xml('yarn.lock');INFO
#!/usr/bin/env raku
subset FileStr of Str where { .IO.e && !.IO.f };
multi sub open-xml(IO::Path(FileStr) $src) { say 'Opening from file string' }
open-xml('yarn.lock');