Re: Is rindex broken or does my brain need a reboot?

2012-05-10 Thread Moritz Lenz
Now fixed in 2012.04.1-93-g128e996: $ ./perl6 -e 'say @*ARGS[0].rindex("e")' perl 1

Re: Is rindex broken or does my brain need a reboot?

2012-05-08 Thread Frederik Schwarzer
Am Dienstag, 8. Mai 2012, 15:28:12 schrieb Patrick R. Michaud: > On Tue, May 08, 2012 at 01:02:24AM -0700, Stefan O'Rear wrote: > > On Tue, May 08, 2012 at 05:19:40AM +0200, Frederik Schwarzer wrote: > > > Hi, > > > > > > I had a little problem with rindex and wrote a small demo code > > > that s

Re: Is rindex broken or does my brain need a reboot?

2012-05-08 Thread Patrick R. Michaud
On Tue, May 08, 2012 at 01:02:24AM -0700, Stefan O'Rear wrote: > On Tue, May 08, 2012 at 05:19:40AM +0200, Frederik Schwarzer wrote: > > Hi, > > > > I had a little problem with rindex and wrote a small demo code that > > shows what I found. > $ install/bin/perl6 -e 'say "perł".rindex("e");' perl >

Re: Is rindex broken or does my brain need a reboot?

2012-05-08 Thread Stefan O'Rear
On Tue, May 08, 2012 at 05:19:40AM +0200, Frederik Schwarzer wrote: > Hi, > > I had a little problem with rindex and wrote a small demo code that > shows what I found. > > The code is: > use v6; > > my $string = "perl"; > say $string; > say $string.WHAT; > say $string.index("e"); > say $string.rind

Is rindex broken or does my brain need a reboot?

2012-05-07 Thread Frederik Schwarzer
Hi, I had a little problem with rindex and wrote a small demo code that shows what I found. The code is: use v6; my $string = "perl"; say $string;