Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Raku

Visibility

unlisted

Author

legacy-anonymous

Created

2023-01-24T22:32:51.716039Z

Updated

2023-01-24T22:32:51.716039Z

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