Find attached a script 'setup.nqp' for building/testing Rakudo.
The library 'disutils' is shipped with Parrot.
See
https://trac.parrot.org/parrot/browser/trunk/runtime/parrot/library/distutils.pir
This library removes the dependences with Makefile & various make
utilities, and remove the configu
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #73836]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73836 >
rakudo: say 2 Z 3
rakudo db0f85: OUTPUT«No applicable candidates found to
dispatch to
Yes, I found that after I submitted the bug. I still find it
surprising that differently-nested structures stringify to the same
thing, and the names seem a bit misleading, since stringification is
still "deep" (it has to recurse into the structure to pull out all the
leaves).
I'm wondering if th
# New Ticket Created by "Mark J. Reed"
# Please include the string: [perl #73816]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73816 >
> my @a = (1,2) Z (3,4); say @a.perl
[1, 3, 2, 4]
Per S03, that should be [[1,3],[2,4
# New Ticket Created by "Mark J. Reed"
# Please include the string: [perl #73818]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73818 >
This test currently passes:
is [1,2,3,4], [[1,2],[3,4]]
and I'm thinking it probably
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #73808]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73808 >
./perl6 -e 'class A { has ($!a, $!b) }'
error:imcc:syntax error, unexpected ')' (')')
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #73806]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73806 >
10:15 <@moritz_> rakudo: my @b= 5, 1, 2; if(@b>2) {say 'yes';}
10:15 <+p6eval> rakudo db0