-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
languageChanges to the Raku Programming LanguageChanges to the Raku Programming Language
Description
Raku provides Unicode versions of many operators – basically whenever there is a sensible suitable Unicode equivalent. However, Raku doesn't provide Unicode alternatives to any of Raku's arrow operators (or operator-like pieces of syntax). But Unicode provides a ton of arrow symbols, so it would be easy for to add Unicode equivalents.
More specifically, there are no Unicode equivalents to any of the following arrows.
my &pointy-block = -> $_ { $_ + 1 };
sub return-value($_ --> Int) { $_ + 1 }
my $left-feed = 1 ==> sum(2);
my $right-feed = (sum(2) <== 1);Metadata
Metadata
Assignees
Labels
languageChanges to the Raku Programming LanguageChanges to the Raku Programming Language