[perl #116280] [BUG] NaN, Inf, -Inf aren't padded with spaces in sprintf in Rakudo

2015-11-10 Thread Christian Bartolomaeus via RT
With the next version bump for nqp this will be fixed: $ perl6-m -e 'say sprintf "%12.5f", -Inf' -Inf $ perl6-m -e 'say sprintf "%12.5f", NaN' NaN

[perl #87034] [BUG] Either binding an array to a list containing the array itself should work consistently or not at all in Rakudo

2015-11-10 Thread Christian Bartolomaeus via RT
Since Rakudo commit 3754356d8e this fails with X::Syntax::Variable::Initializer: $ perl6-m -e 'my @foo := 1..3, @foo; .say for @foo[^10]' ===SORRY!=== Error while compiling -e Cannot use variable @foo in declaration to initialize itself at -e:1 --> my @foo := 1..3, @⏏foo; .say for @foo[^10]

[perl #122891] [BUG] ^^ and $$ behave unlike ^ and $ when the string being matched is a single line ending in \r\n in Rakudo

2015-11-10 Thread jn...@jnthn.net via RT
On Fri Oct 03 03:11:45 2014, masak wrote: > m: say "a\n" ~~ /^^\s*$$/ > rakudo-moar d69a87: OUTPUT«Nil␤» > m: say "a\r\n" ~~ /^^\s*$$/ > rakudo-moar d69a87: OUTPUT«「」␤␤» > That's why Pod tables are bust on Windows. > jnthn: that looks clearly wrong to me. > \r\n are whitespace. > masak:

Just to say 'Well Done' to developers

2015-11-10 Thread Richard Hainsworth
Dear perl6 developers and implementers! Amazing the difference a year makes. I've been following perl6 from the beginning. About a year ago, I had @other-things-to-do. Just started tinkering again. Speed increase is really impressive. It's a joy to use. So I just wanted to say to everyone

[perl #126596] [LTA] confusing error with single '{' in double quoted string:

2015-11-10 Thread via RT
# New Ticket Created by Jonathan Stowe # Please include the string: [perl #126596] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126596 > perl6 -e 'my $a = "jsjsjs {"; for -> $b { say $b }' ===SORRY!=== Error while

[perl #126597] [BUG] race() and hyper() block the production of a list

2015-11-10 Thread via RT
# New Ticket Created by Matt Oates # Please include the string: [perl #126597] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126597 > The following has an empty result when using race or hyper in perl6 version