Re: need windows loop help

2019-11-22 Thread ToddAndMargo via perl6-users
On 2019-11-22 22:33, Raymond Dresens wrote: Hello, What is the function of the 'lines' method call (in @Result.lines.kv) in your for loop? If you remove it, does it 'just do what you want'? That was it. I was remembering when I broke a YUGE string full of line feed into individual strings.

Re: need windows loop help

2019-11-22 Thread Raymond Dresens
Hello, What is the function of the 'lines' method call (in @Result.lines.kv) in your for loop? If you remove it, does it 'just do what you want'? I ask this because of the following interaction on the REPL: > my @x = (1, 2, 3, 4, 5, 6, 7, 8); [1 2 3 4 5 6 7 8] > @x.kv (0 1 1 2 2 3 3 4 4 5 5 6

Re: need windows loop help

2019-11-22 Thread ToddAndMargo via perl6-users
On 2019-11-22 21:52, ToddAndMargo via perl6-users wrote: Hi All, C:\NtUtil>C:\rakudo\bin\perl6.bat -v This is Rakudo Star version 2019.03.1 built on MoarVM version 2019.03 implementing Perl 6.d. Windows 7 SP1, x64 I am trying to write a simple loop in Windows and I am doing something wrong.

need windows loop help

2019-11-22 Thread ToddAndMargo via perl6-users
Hi All, C:\NtUtil>C:\rakudo\bin\perl6.bat -v This is Rakudo Star version 2019.03.1 built on MoarVM version 2019.03 implementing Perl 6.d. Windows 7 SP1, x64 I am trying to write a simple loop in Windows and I am doing something wrong. @Result definitely have something in it. This what the da