The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
module ContainsUnicode {
    sub uc-and-join(*@things, :$separator = ', ') is export {
        @thingsĀ».uc.join($separator)
    }
}

# vim: ft=perl6