re: Unicode - Perl6 does already use unicode characters for some of its operators. Take the Hyperoperator »« (http://perlcabal.org/syn/S03.html#Hyper_operators):
my @a = 1..5; my @b = 6..10; my @c = @a »*« @b; # => 6, 14, 24, 36, 50
@c>>++; # => 7, 15, 25, 37, 5
re: Unicode - Perl6 does already use unicode characters for some of its operators. Take the Hyperoperator »« (http://perlcabal.org/syn/S03.html#Hyper_operators):
And there are >> & << synonyms for those who find using unicode chars too odd: