On Fri Feb 11 11:42:36 2011, masak wrote:
> rakudo: my $ya = "\cIa"
> rakudo : OUTPUT«===SORRY!===Method 'panic' not found for
> invocant of class 'Regex;Match'»
> ???
> internal error during error reporting
> * masak submits rakudobug
> rakudo: "\cI"
> rakudo : OUTPUT«===SORRY!===Method '
On Tue Oct 16 09:12:33 2012, jn...@jnthn.net wrote:
> On Fri Jul 20 08:13:21 2012, moritz wrote:
> > 17:11 < moritz> r: :(::T $x)
> > 17:11 <+p6eval> rakudo 4eeffc: OUTPUT«use of uninitialized value of type
> > Mu in string context in any at src/gen/BOOTSTRAP.pm:104use of
> > uninitialized valu
On Sun Jun 09 07:31:23 2013, jn...@jnthn.net wrote:
> On Wed Mar 16 14:12:23 2011, masak wrote:
> > rakudo: my ($a, $b, $c); $c = 42; [=] $a, $b, $c; say ($a, $b,
> > $c).join("|")
> > rakudo e3bd9a: OUTPUT«Any()|Any()|42»
> > huh.
> > that isn't what I expected...
> > std: my ($a, $b, $c); [
On Sun Aug 05 09:04:56 2012, jn...@jnthn.net wrote:
> On Sun Jul 22 15:16:34 2012, masak wrote:
> > hm. Seems there's a bug in rakudo.
> > r: class A { state $b; };
> > rakudo 3ac8c7: OUTPUT�(signal SEGV)�
> > lue: nice!
> > * masak submits rakudobug
>
> Fixed; tagging testneeded.
>
> /jnthn
On Sun May 27 20:11:51 2012, coke wrote:
> On Wed Oct 06 16:01:03 2010, masak wrote:
> > mberends++ reports the following bug:
> >
> > $ cat testenv.pm6
> >
> > print 'Test existence of %*ENV: ';
> > print %*ENV.exists('PERL6LIB');
> > say " OK, still alive";
> >
> > $ rakudo testenv.pm6
> >
>
On Sat Apr 21 02:06:01 2012, jn...@jnthn.net wrote:
> On Thu Nov 25 11:51:59 2010, masak wrote:
> > rakudo: say "this sentence no verb".trans( / \s+ / => " " )
> > rakudo : OUTPUT«this senten e n ver »
> > :(
> > * masak submits rakudobug
> > I thought you were fixing that? ;)
> > yeah. me
On Mon Nov 05 14:27:29 2012, jn...@jnthn.net wrote:
> On Wed Apr 04 04:10:55 2012, masak wrote:
> > r: say 4 < 5 < 6 < 7
> > rakudo 4373f0: OUTPUT«True»
> > r: say 4 < 5 < 6 < 4
> > rakudo 4373f0: OUTPUT«False»
> > r: enum A ; multi infix:<< < >>(A, A) { False };
> > multi infix:<< < >>(e1,