Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: d00c44bb2ae2e3c0eacf03972fefb59a34a3a8a7
https://github.com/perl6/specs/commit/d00c44bb2ae2e3c0eacf03972fefb59a34a3a8a7
Author: Stéphane Payrard
Date: 2016-03-24 (Thu, 24 Mar 2016)
Changed paths:
M S
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: bd468647d355eb6f50524426615bbc6ea9bc3c78
https://github.com/perl6/specs/commit/bd468647d355eb6f50524426615bbc6ea9bc3c78
Author: Stéphane Payrard
Date: 2016-03-24 (Thu, 24 Mar 2016)
Changed paths:
M S
Fixed with f220a5edc0694751a585 , tests are still needed.
> On 24 Mar 2016, at 21:49, Alex Jakimenko (via RT)
> wrote:
>
> # New Ticket Created by Alex Jakimenko
> # Please include the string: [perl #127778]
> # in the subject line of all future correspondence about this issue.
> # https://
# New Ticket Created by Alex Jakimenko
# Please include the string: [perl #127784]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=127784 >
Let's start with an example that works:
Code:
my @a;
@a[^8] = 5, 6;
say @a
Result:
[5
# New Ticket Created by Trey Harris
# Please include the string: [perl #127785]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=127785 >
Example:
% perl6 -e 'sub MAIN ($x where { $^x > 1 } ) { say "big" }' 4
big
% perl6 -e 'su