Helping Perl 6: a complete dev environment

2016-04-28 Thread Tom Browder
Is there a pointer somewhere on how to set up a complete development environment for Perl 6? I know how to clone individual pieces but I don't know how to use the various cloned directories for a complete dev environment using them. I assume I can install each piece individually but maybe there i

[perl #128019] [LTA WARNING] Smartmatch with S/// Warning Inaccurate / Misleading

2016-04-28 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #128019] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128019 > Trying to smartmatch against S/// gives a compile time warning: 'Smartmatch with S///

[perl #122340] can't use hindi VOWEL SIGNS in identifiers

2016-04-28 Thread Will Coleda via RT
On Tue Apr 26 14:01:42 2016, coke wrote: > On Sun Jul 20 09:43:56 2014, coke wrote: > > S02-lexical-conventions/unicode.t has two tests that have to be > > skipped due to a parse fail: > > > > lives_ok { my $पहला = 1; }, "hindi declaration"; > > is((do { my $दूसरा = 2; sub टोटल ($x) { $x + 2 }; टोट

[perl #128017] enum treats a Seq of Pairs as a List of Str

2016-04-28 Thread via RT
# New Ticket Created by Wenzel Peppmeyer # Please include the string: [perl #128017] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128017 > enum Bits ( (('Bit-' X~ 1..8) Z=> (1, 2, 4 ... 256)) ); dd Bits.enums; # OUTPUT«{"Bit

Re: question about Supply.act()

2016-04-28 Thread Moritz Lenz
On 04/28/2016 11:11 AM, mt1957 wrote: Hi, The documentation about the method act explains that 'the given code is guaranteed to be only executed by one thread at a time'. Can I assume from this that any other thread including the main thread isn't running? No. Other threads might still be run

question about Supply.act()

2016-04-28 Thread mt1957
Hi, The documentation about the method act explains that 'the given code is guaranteed to be only executed by one thread at a time'. Can I assume from this that any other thread including the main thread isn't running? I want to know if I need to guard the data with semaphores I am changing