Happy Perlmas

2015-12-27 Thread Frederik Schwarzer
Congrats for reaching this milestone. :) And thanks to all the contributors who kept going despite the ranting and who are practicing kindness towards trolls and ranters. Understanding that trolls can be transformed into users or contributors with a warm heart-felt hug is pure gold. :) Keep it

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 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;

Re: Strange variable behaviour

2008-06-22 Thread Frederik Schwarzer
On Monday 23 June 2008 00:19:14 Moritz Lenz wrote: > Will Coleda wrote: Hi, > > Which implementation of Perl 6 are you using here? In Rakudo, > > everything works as you describe except for the last example which > > dies on the last line with: Erm, totally forgot that. I am using a recent (rea

Strange variable behaviour

2008-06-22 Thread Frederik Schwarzer
Hi, there is something I do not understand. I reduced the code to a minimal case. If I do: my $a = 23; my $b = $a; # copy $a = 42; say $b; # 23 $b is 23, and if I do: my $a = 23; my $b := $a; # reference $a = 42; say $b; # 42 $b is 42 because it is just a r