[perl #127226] QUOTE does not remove backslash with adverb :b

2017-06-23 Thread Zoffix Znet via RT
On Sat, 09 Jan 2016 10:23:18 -0800, gfldex wrote: > my $x = 42; say Q:s:b{\$x} > > # OUTPUT«\42␤» > # EXPECTED«42␤» Worth nothing the OP's expected is not correct. The result should be string '$x', as the backslash would escape the sigil and prevent it from being interpolated. It actually works

[perl #127226] QUOTE does not remove backslash with adverb :b

2017-06-23 Thread Zoffix Znet via RT
On Sat, 09 Jan 2016 10:23:18 -0800, gfldex wrote: > my $x = 42; say Q:s:b{\$x} > > # OUTPUT«\42␤» > # EXPECTED«42␤» Worth nothing the OP's expected is not correct. The result should be string '$x', as the backslash would escape the sigil and prevent it from being interpolated. It actually works

Re: [perl #131626] [PERF] ≥ and ≤ are 36x slower than Texas version; ≠ is 15x slower

2017-06-23 Thread Elizabeth Mattijsen
Temporarily fixed with a13bad95b2e1ad48a1d1a > On 22 Jun 2017, at 22:59, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > This was discussed in > https://github.com/rakudo/rakudo/pull/1032#issuecomment-284217342 > > In theory, this ticket should apply for other ops as well. > > Note that

Re: parameters from the command line: how do they do that?

2017-06-23 Thread ToddAndMargo
On 06/21/2017 11:03 PM, Brandon Allbery wrote: On Thu, Jun 22, 2017 at 1:51 AM, Todd Chester > wrote: You want named parameters. sub MAIN(:$fixed-string, :$extended-regex, ...) { # $fixed-string and $extended-regex are Bools he

Re: parameters from the command line: how do they do that?

2017-06-23 Thread ToddAndMargo
On 06/22/2017 07:27 AM, Bruce Gray wrote: On Jun 21, 2017, at 11:49 PM, Todd Chester wrote: Hi All, I know how to read things on the command line. But how to other's figure out what goes together when things don't arrive in order? —snip— Along with the fine docs that have been recommende

[perl #131639] [BUG] Junction:D.iterator returns an iterator that .pulls-one a Mu type object

2017-06-23 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131639] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131639 > Originally found this in behaviour of Z meta operator: m: dd .any Z .any rakudo

[perl #131640] Unterminated qw subscript should say the line number where it was started ( say “$

2017-06-23 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #131640] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131640 > Let's say you have this code: my $x; say “$x<”; my %h = ; for %h.k

Re: parameters from the command line: how do they do that?

2017-06-23 Thread Bruce Gray
> On Jun 21, 2017, at 11:49 PM, Todd Chester wrote: > > Hi All, > > I know how to read things on the command line. But > how to other's figure out what goes together when things > don't arrive in order? —snip— Along with the fine docs that have been recommended, I offer this just-uploaded v