- or download this
# pseudo
for <variable> ( list ) {
...
for my $key ( keys %hash ) {
print "$key\n";
}
- or download this
#psuedo
$hash{<key>} = <value>;
#read
$hash{foo} = 'bar';
- or download this
#pseudo
@hash{<list of keys>} = <list of values>;
#real
@hash{ @keys } = @values;