On Thu Aug 05 10:33:35 2010, masak wrote: > <masak> rakudo: sub postfix:<!>($n) { [*] 1..$n }; say (1, 2, 3)>>! > <p6eval> rakudo 19931f: OUTPUT«===SORRY!===Could not find sub > &postfix:<!>» > * masak submits rakudobug > <masak> rakudo: sub infix:<+++>($a, $b) { ($a + $b) div 2 }; say 10 > >>+++<< 14 > <p6eval> rakudo 19931f: OUTPUT«===SORRY!===Could not find sub > &infix:<+++>» > <masak> alester: officially, it's in a repo.
The first one now works: 10:21 < [Coke]> rakudo: sub postfix:<!>($n) { [*] 1..$n }; say (1, 2, 3)>>! 10:21 <+p6eval> rakudo 38165a: OUTPUT«1 2 6» But the second does not: 10:21 < [Coke]> rakudo: sub infix:<+++>($a, $b) { ($a + $b) div 2 }; say 10 >>+++<< 14 10:21 <+p6eval> rakudo 38165a: OUTPUT«===SORRY!===Missing << or >> at line 1, near "++<< 14"» -- Will "Coke" Coleda