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 !
# 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
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
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
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
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?
# 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