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
# 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///
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 }; टोट
# 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
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
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