in reply to Re: (FoxUni) Re(3): Breaking output lines into N-element chunks
in thread Breaking output lines into N-element chunks

But I have started getting out of the habit as I understand $#array has been removed from Perl6.

Perl 6 isn't Perl 5.x, it's a new language that happens to be a lot like Perl 5. You will have to re-code things anyway. There will be a Perl 5 to 6 converter, so $#foo will be converted to @foo.end or @foo.last (I forgot which one it was), which is probably better than (@foo.length - 1).

- Yes, I reinvent wheels.
- Spam: Visit eurotraQ.

  • Comment on Re: Re: (FoxUni) Re(3): Breaking output lines into N-element chunks