In Python, if I update the dict dictionary with another dict called u(use Perl as key), it will update the value:
>>> dict = {'Python':'2', 'Perl' : 5}
>>> u = {'Perl' : 6}
>>> dict.update(u)
>>> dict
{'Python': '2', 'Perl': 6}
but in Perl 6 :
> my %hash = 'Python' => 2, Perl => 5;
> my %u = Perl => 6
> %hash.append(%u)
{Perl => [5 6], Python => 2}
So, Does Perl 6 have an equivalent to Python's update method on dictionary?