[perl #83420] [BUG] Statement-ending 'for' returns an empty list when nothing in the body was executed, block-form 'for' doesn't in Rakudo

2011-02-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #83420] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=83420 > rakudo: (say "OH HAI" if $_ > 4 for 1, 2, 3) or say "empty!" rakudo 924242: OUTPUT«emp

Re: [perl #83356] [BUG] exporting infix:<+> fails from simple class

2011-02-04 Thread Moritz Lenz
Am 04.02.2011 05:04, schrieb Solomon Foster (via RT): # New Ticket Created by Solomon Foster # Please include the string: [perl #83356] # in the subject line of all future correspondence about this issue. #http://rt.perl.org/rt3/Ticket/Display.html?id=83356> If I have this: class A {

[perl #83356] [BUG] exporting infix:<+> fails from simple class

2011-02-04 Thread via RT
# New Ticket Created by Solomon Foster # Please include the string: [perl #83356] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=83356 > If I have this: class A { multi sub infix:<+>(A $a, A $b) is export { say

[perl #83354] [BUG] Conflict importing multis

2011-02-04 Thread via RT
# New Ticket Created by Solomon Foster # Please include the string: [perl #83354] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=83354 > A.pm: class A { has $.a; multi sub infix:<+>(A $x, A $y) is export {