[perl #118559] [BUG] .clone affects the original object in Rakudo

2013-06-20 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #118559] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=118559 > r: class Foob { has @.fields; }; my $x = Foob.new(fields=>['a','b']); my $x2 = $

# Announce: Rakudo Perl 6 compiler, Development Release #65 ("Poznan")

2013-06-20 Thread Carl Mäsak
On behalf of the Rakudo development team, I'm proud to announce the June 2013 release of Rakudo Perl #65 "Poznan". Rakudo is an implementation of Perl 6 on the Parrot Virtual Machine (see ) and the Java Virtual Machine. The tarball for this release is available from

[perl #111734] [BUG] Can't locally redefine True in Rakudo

2013-06-20 Thread Carl Mäsak via RT
On Sun Jun 09 08:00:22 2013, jn...@jnthn.net wrote: > On Tue Mar 13 13:35:18 2012, masak wrote: > > nom: constant True = 42; say True > > rakudo fee891: OUTPUT«True␤» > > hm. > > r: constant True = 42; say +True > > rakudo fee891: OUTPUT«1␤» > > Huh > > * masak submits rakudobug > > good rak

[perl #64928] The undefinedness of optional arguments and typed attributes in Rakudo

2013-06-20 Thread Carl Mäsak via RT
On Tue Apr 21 06:35:05 2009, masak wrote: > but... I just want a nice way to see if the hash was passed or > not. > [...] > the problem is that we're doing in-band communication > instead of asking the hash parameter if it was defined, we > should ask the capture if that hash was given > aye. >