Fixed
On 12 Oct 2014, at 18:11, Patrick R. Michaud (via RT)
<[email protected]> wrote:
> # New Ticket Created by Patrick R. Michaud
> # Please include the string: [perl #122963]
> # in the subject line of all future correspondence about this issue.
> # <URL: https://rt.perl.org/Ticket/Display.html?id=122963 >
>
>
>
> pmichaud@plum:~/p6/rakudo$ ./perl6 --version
> This is perl6 version 2014.09-182-gd329723 built on MoarVM version
> 2014.09-14-g0df2d6f
> pmichaud@plum:~/p6/rakudo$ cat ins.p6
> my $fh = open("README.md");
>
> for $fh.lines() {
> say $fh.ins;
> last;
> }
>
>
> pmichaud@plum:~/p6/rakudo$ ./perl6 ins.p6
> 0
> pmichaud@plum:~/p6/rakudo$
>
>
> Result should be "1".
>
> Pm
>