# New Ticket Created by  Richard Hainsworth 
# Please include the string:  [perl #62278]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=62278 >


The feed operators ==> and <== dont appear to work.
Not on the rakudo feature status page

I tried the following code (I know it is better to use [+] for this 
example, but I was looking for a simple code snippet).

my @arr = ( 1,2,3,4 );
my $collect;
@arr ==> { $collect += $_ };
say $collect; # should be 10

Got a syntax error.

Reply via email to