You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
457 B
Perl

#!C:/Perl/Bin
%animals = (H=> 'h', S=> 's', G=> 'g');
print "$animals{'S'} \n\n";
foreach $creature(keys %animals)
{
print "$creature \n";
}
print "\n\ndeleting...\n\n";
delete($animals{Shark});
foreach $creature(keys %animals)
{
print "$creature \n";
}
print "\n\n'emptying' the hash ...\n\n";
%animals=();
print "Displaying empty hash ...\n\n";
foreach $creature(keys %animals)
{
print "$creature \n";
}