Re: Multi-Dimensional arrays

2009-04-04 Thread Carl Mäsak
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

Re: [perl #64448] [BUG] rakudo cannot be executed outside rakudo's build directory

2009-04-04 Thread Jonathan Worthington
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

[perl #64448] [BUG] rakudo cannot be executed outside rakudo's build directory

2009-04-04 Thread jason switzer
# 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

[perl #64440] [PATCH] Configure --gen-parrot improvements.

2009-04-04 Thread via RT
# 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

[perl #64366] Bool.succ does null PMC

2009-04-04 Thread Ron Schmidt via RT
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