Re: dry run?

2017-01-15 Thread Richard Hainsworth
perl6 -c Is your Perl (cap P) below correct? On Sunday, January 15, 2017 02:42 PM, ToddAndMargo wrote: Hi All, Is there a Perl 6 equivalent of Perl 5's | Perl -c I want to check my program for errors without actually running it. Many thanks, -T What me forget my semicolons! Never !

[perl #130562] Mixed longest (ltm) and lexical alternation makes wrong match - "42" ~~ / [ "0" || "42" ] | "4" /

2017-01-15 Thread via RT
# New Ticket Created by Ron Schmidt # Please include the string: [perl #130562] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130562 > So "42" ~~ / [ "0" || "42" ] | "4" / matches 4 but if you stick to just one kind of altern

Re: dry run?

2017-01-15 Thread Brandon Allbery
On Sun, Jan 15, 2017 at 5:32 AM, Richard Hainsworth wrote: > Is your Perl (cap P) below correct? They are doing at least some of this on Windows, so the case doesn't matter. -- brandon s allbery kf8nh sine nomine associates allber...@gmail.com

[perl #130562] Mixed longest (ltm) and lexical alternation makes wrong match - "42" ~~ / [ "0" || "42" ] | "4" /

2017-01-15 Thread jn...@jnthn.net via RT
On Sun, 15 Jan 2017 05:06:21 -0800, ronaldxs wrote: > So "42" ~~ / [ "0" || "42" ] | "4" / matches 4 but if you stick to just > one kind of alternation: > > "42" ~~ / [ "0" | "42" ] | "4" / > > "42" ~~ / [ "0" || "42" ] || "4" / > > the match correctly comes back with 42. It looks like in th

Re: dry run?

2017-01-15 Thread ToddAndMargo
On 01/15/2017 02:32 AM, Richard Hainsworth wrote: Is your Perl (cap P) below correct? Typo Thank you! One of the problems with google and Perl 6 is that you get buried with Perl 5 hits -- ~~ Computers are like air conditioners. They malfunction when you ope

Re: dry run?

2017-01-15 Thread ToddAndMargo
On 01/15/2017 10:39 AM, Brandon Allbery wrote: On Sun, Jan 15, 2017 at 5:32 AM, Richard Hainsworth wrote: Is your Perl (cap P) below correct?

[perl #130564] [UNI] East_Asian_Width unicode property is not supported ( .uniprop(‘East_Asian_Width’) )

2017-01-15 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130564] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130564 > Code: dd ‘あ’.uniprop(‘East_Asian_Width’) Result: "" Not sure what