On behalf of the Parrot team I'm proud to announce the release of
Parrot 0.3.1. I'd like to thank all involved people as well as our
sponsors for supporting us.
What is Parrot?
Parrot is a virtual machine aimed at running Perl6 and other dynamic
languages.
Parrot 0.3.1 changes and news
- Varia
Hi,
my ($key, $value) = ;
my $pair = ($key => $value);
$pair.key = "new";
# Should this fail ("cannot modify a constant")?
# Should this update $pair.key, but leave $key untouched?
# Should this update $pair.key, implicitly updating $key as well?
$pair.value