Help for this page
# Creates a hash %t that has the same contents as %toys my %t = %{$_[0]}; # Modifies %t (which is unrelated to %toys) $t{'leggo'} = "yes";
my ($toys) = @_; $toys->{'leggo'} = 1;