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