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
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
# 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