On Wed Apr 01 22:00:57 2009, wayland wrote:
> rakudo: my Bool $t; $t = Bool::True; print $t.succ
> I don't know what it should do, but not Null PMC.
I would think it would do somthing like:
rakudo: my $x = Bool::True; say ++$x
rakudo 881ed3: OUTPUT«1»
and the attached patches provide
# New Ticket Created by Tim Nelson
# Please include the string: [perl #64366]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64366 >
rakudo: my Bool $t; $t = Bool::True; print $t.succ
rakudo 64e33a: OUTPUT«Null PMC acce