Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Raku

Visibility

unlisted

Author

legacy-anonymous

Created

2023-01-24T22:17:25.144973Z

Updated

2023-01-24T22:17:25.144973Z

#!/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