> On 06 Apr 2016, at 22:47, Bernhard Specht (via RT)
> wrote:
>
> # New Ticket Created by Bernhard Specht
> # Please include the string: [perl #127847]
> # in the subject line of all future correspondence about this issue.
> # https://rt.perl.org/Ticket/Display.html?id=127847 >
>
>
> disa
# New Ticket Created by grond...@yahoo.fr
# Please include the string: [perl #127863]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=127863 >
IRC extract from today:
23:35 < grondilu> m: my MixHash $a .= new; my MixHash $b =
# New Ticket Created by Jonathan Stowe
# Please include the string: [perl #127860]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=127860 >
It appears that the Metamodel::WrapDispatcher can't find the candidate to
execute when
# New Ticket Created by James Clark
# Please include the string: [perl #127854]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=127854 >
$ perl6 --version
This is Rakudo version 2016.03-98-g61d231c built on MoarVM version
2016.
# New Ticket Created by Bernhard Specht
# Please include the string: [perl #127847]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=127847 >
disallow dimensions smaller or equal 0 in shapes
From 93c5f8a96d7f8f31040d22e3e4e1ad98
On Sat Jan 09 12:20:11 2016, siavash.askari.n...@gmail.com wrote:
>
> I experienced this problem in this code:
> $_ = "abcdefgh"; say ++$_ until
> /(\w)<{$0.Str.succ}><{$0.Str.succ.succ}>/ and !/i|o|l/ and
> /(\w)$0.*(\w)$1/;
>
> And `/(\w)<{$0.Str.succ}><{$0.Str.succ.succ}>/` regex is causing it
# New Ticket Created by grond...@yahoo.fr
# Please include the string: [perl #127858]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=127858 >
$ cat > A.pm6
unit module A;
constant @a is export = map { (1 +< $_) => 1 }, ^3;
$
Hi,
Perhaps the error is caused by the assignment wanting to store 42 at the
address of $test, which is not there yet. See also doc about 'sub () is rw
{ ••• }'. Look for rw traits!
Furthermore, to declare and assign more variables use
(my $a, my $b) = ( 42, 43);
Greetings
Marcel
On Apr