Add a bunch of Perl 6 sample files

This commit is contained in:
Rob Hoelz
2014-01-25 22:22:26 +01:00
parent 1364e9be51
commit 837e9a6325
18 changed files with 4419 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
module ContainsUnicode {
sub uc-and-join(*@things, :$separator = ', ') is export {
@things».uc.join($separator)
}
}
# vim: ft=perl6