Mega Code Archive

 
Categories / Perl / Statement
 

Using foreach statement with hash

$hash{fruit} = orange; $hash{sandwich} = club; $hash{drink} = lemonade; foreach $key (keys %hash) {     print $hash{$key} . "\n"; }