# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #77638] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=77638 >
<masak> rakudo: my $x = 'aaa'; print ++$x, ' : '; print -$x, ' : '; say ++$x; <p6eval> rakudo d75c61: OUTPUT«aab : -0 : aac» * masak submits rakudobug <masak> this one is not spec'd, and Perl 5 prints '-aab' for the middle term. <masak> buubot: eval my $x = 'aaa'; print ++$x, ' : '; print -$x, ' : '; print ++$x, "\n"; <buubot> masak: aab : -aab : aac 1
