Re: [perl #130542] AutoReply: \c[BELL] returns the U+0007 control code not U+1F514 BELL

2017-01-13 Thread Samantha McVey
This has been fixed on MoarVM as of https://github.com/MoarVM/MoarVM/commit/816186484b5cc52f9ff1be6afa3b6f49264335bf BELL now resolves to  U+1F514 on MoarVM, but this is still broken on the JVM

Re: JIT?

2017-01-13 Thread ToddAndMargo
On 01/13/2017 05:18 AM, Steve Mynott wrote: The most important difference is that the JIT version is 64 bit and the "no JIT" is 32 bit. So if you are running a modern Windows you almost certainly want the 64 bit (JIT) version Also the JIT version is a more recent version. S I missed that

#130549: [UNI] <:Digit> apparently matches anything

2017-01-13 Thread Samantha McVey
This seems a little different than https://rt.perl.org/Ticket/Display.html?id=130483 Digit resolves to the Numeric_Type property, whose uniprop-int value is 0 for non-numbers. <:Digit> and <:Numeric_Type> both match everything. Will need more investigation.

Re: Need dynamic variables help

2017-01-13 Thread ToddAndMargo
On 01/13/2017 08:14 AM, Brandon Allbery wrote: This is also true for Perl 5, aside from it using . instead of ~ for concatenation. An error I constantly make. It is indeed a . not a + in Perl 5. Thank you! -- ~~ Computers are like air conditioners. They

panda's port?

2017-01-13 Thread ToddAndMargo
Hi All, Anyone know what port and protocol (tcp, udp) panda uses to install modules? Many thanks, -T -- ~~ Computers are like air conditioners. They malfunction when you open windows ~~

Re: Need dynamic variables help

2017-01-13 Thread Brandon Allbery
On Fri, Jan 13, 2017 at 4:33 AM, Todd Chester wrote: > Will "~" > always replace "+" for this, or only with a dynamic variable? > ~ is always string concatenation; + is never correct for strings unless you want to coerce the string to a number (which is what led to your

[perl #130553] [BUG] segfault on a use that exports a operator

2017-01-13 Thread via RT
# New Ticket Created by fernandocor...@gmail.com # Please include the string: [perl #130553] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130553 > Im receiving a segfault when I try to run this:

Re: Subroutine question

2017-01-13 Thread ToddAndMargo
On 01/13/2017 06:53 PM, Brandon Allbery wrote: On Fri, Jan 13, 2017 at 9:50 PM, ToddAndMargo wrote: Is their example a boo-boo? :$type, # Optional How is this

Any trick to installing a module in Windows?

2017-01-13 Thread ToddAndMargo
Hi All, I am trying to install Net::FTP in Windows 7. Panda's install is error city. Any trick to doing this? Many thanks, -T -- ~~ Computers are like air conditioners. They malfunction when you open windows ~~

panda?

2017-01-13 Thread Todd Chester
Hi All, I am using Fedora Core 25. There is no sign of "panda" in the repo (or I don't know what it is called). I need to install Net::FTP. No sign of that in the repos either (or I don't know what it is called either). How do I install Net::FTP? Many thanks, -T

Re: Need dynamic variables help

2017-01-13 Thread Fernando Santagata
Hi, As Siavash pointed out, the Perl6 concatenation operator is '~'. On Fri, Jan 13, 2017 at 10:33 AM, Todd Chester wrote: > > > On Fri, Jan 13, 2017 at 10:01 AM, Todd Chester > wrote: > >> Hi All, >> >> I am trying to understand how to read

Re: Need dynamic variables help

2017-01-13 Thread Fernando Santagata
Try: print "Perl Version = " ~ $*PERL ~ "\n"; or better: say "Perl Version = $*PERL"; OTH On Fri, Jan 13, 2017 at 10:01 AM, Todd Chester wrote: > Hi All, > > I am trying to understand how to read variables from the > shell's environment. I am reading this: > >

[perl #117683] [UNI] Several unicode char (nick)names unrecognized

2017-01-13 Thread Samantha McVey
I have fixed it on the JVM as of NQP commit: # Fix RT #117683 on JVM \c[LINE FEED] \c[CARRIAGE RETURN] #Also fixes \c[NEXT LINE] as well. https://github.com/perl6/nqp/commit/0c249e7236a63325e6440df55a762a4378e6e63a Fixed on MoarVM as of MoarVM commit: # Fix RT #117683 \c[LINE FEED]

[perl #130549] <:Digit> apparently matches anything

2017-01-13 Thread brian d foy
# New Ticket Created by "brian d foy" # Please include the string: [perl #130549] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130549 > I mistakenly tried to match the Unicode property <:Digit> when I meant number. It's not

Re: Need dynamic variables help

2017-01-13 Thread Siavash
Hi, `+` is addition operator: https://docs.perl6.org/routine/$PLUS_SIGN#(Operators)_infix_+ String concatenation operator is `~`: https://docs.perl6.org/routine/$TILDE#(Operators)_infix_~ So you should write: print "Perl Version = " ~ $*PERL ~ "\n"; Or use `say` or `put` to add a newline: say

Need dynamic variables help

2017-01-13 Thread Todd Chester
Hi All, I am trying to understand how to read variables from the shell's environment. I am reading this: https://docs.perl6.org/language/variables#Dynamic_variables #!/usr/bin/perl6 # print "Display = " + %*ENV{'DISPALY'} + "\n"; print "Perl Version = " + $*PERL + "\n"; $ ./env.pl6 Cannot

Re: Need dynamic variables help

2017-01-13 Thread Todd Chester
On Fri, Jan 13, 2017 at 10:01 AM, Todd Chester > wrote: Hi All, I am trying to understand how to read variables from the shell's environment. I am reading this:

Re: Need dynamic variables help

2017-01-13 Thread Siavash
But in Perl 5 `.` is string concatenation operator, not `+` On 2017-01-13 09:33:10 GMT, Todd Chester wrote: >> >> On Fri, Jan 13, 2017 at 10:01 AM, Todd Chester > > wrote: >> >> Hi All, >> >> I am trying to understand how to read

Re: JIT?

2017-01-13 Thread Steve Mynott
The most important difference is that the JIT version is 64 bit and the "no JIT" is 32 bit. So if you are running a modern Windows you almost certainly want the 64 bit (JIT) version Also the JIT version is a more recent version. S

[perl #127235] [BUG] Built-ins `all, any, one, none` clobber user-defined zero-arg functions with same name

2017-01-13 Thread Zoffix Znet via RT
On Tue, 10 May 2016 14:27:20 -0700, sml...@gmail.com wrote: > It may have to do with their signature (as reported by the > `.signature` introspection method): They're actually special-cased in the grammar[^1] based on their name:

Re: panda?

2017-01-13 Thread Luca Ferrari
On Fri, Jan 13, 2017 at 10:16 AM, Todd Chester wrote: > Hi All, > > I am using Fedora Core 25. There is no sign of "panda" > in the repo (or I don't know what it is called). I don't know why is not there, but searching panda on

Re: Need dynamic variables help

2017-01-13 Thread Brandon Allbery
On Fri, Jan 13, 2017 at 4:33 AM, Todd Chester wrote: > I was using Perl5's string concatenation That uses ., not +. Quite a few other languages use + though. -- brandon s allbery kf8nh sine nomine associates allber...@gmail.com