Peter (>):
> Am I right that multi-dimensional arrays do not yet work fully in Rakudo?
Yes, you are.
That is to say, you can't do this yet:
my @a[4;2]; # Valid indices are 0..3 ; 0..1
There's nothing stopping you from creating an array of arrays, though.
// Carl
jason switzer (via RT) wrote:
According to pmichaud:
(00:10:51) pmichaud: oh, looks like a bug jnthn introduced.
(00:11:08) pmichaud: I suspect I'll have to let him repair it.
(00:12:27) pmichaud: The code being generated by actions.pm is now adding a
line like: .include "src/pr_macros.pir"
(0
# New Ticket Created by "jason switzer"
# Please include the string: [perl #64448]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64448 >
When moving outside of the rakudo git directory, the execution of the
fakexecutable a
# New Ticket Created by Geoffrey Broadwell
# Please include the string: [perl #64440]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64440 >
Attached patch squashes the following:
[Configure] Use Getopt::Long instead of ma
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