my %hash = ( a => 23 ); # zugriff auf die 23: print "$hash{a}\n"; my $hashref = { a => 23 }; # zugriff auf die 23: print "$hashref->{a}\n";