[perl #63306] [**] has the wrong associativity in Rakudo

2010-04-03 Thread jn...@jnthn.net via RT
On Sun Aug 02 00:07:25 2009, missingthepoint wrote: > This code: > >say [**] 4,3,2 > > produces: > >4096 > > But according to S03, ** is right associative, and (I think) the > reduction op is supposed to associate the same way. In other words, > the output should be: > >262144

Re: [perl #63306] [**] has the wrong associativity in Rakudo

2009-02-19 Thread Moritz Lenz
Hi, Carl MXXsak (via RT) wrote: > # New Ticket Created by "Carl Mäsak" > # Please include the string: [perl #63306] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Display.html?id=63306 > > > > pugs: say [**] 2, 3, 4 > pugs: OUTPUT«2

[perl #63306] [**] has the wrong associativity in Rakudo

2009-02-18 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #63306] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=63306 > pugs: say [**] 2, 3, 4 pugs: OUTPUT«2417851639229258349412352␤» pugs: say 2 ** 3 ** 4