my %hash = (test => 1); # Hash my $hash_ref = {test => 1}; # Hash Reference # Zugriff: $hash{test} = 2; $hash_ref->{test} = 2;