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.
programming-examples/perl/Hash/The each function returns, ...

16 lines
455 B
Perl

5 years ago
#Format: each(ASSOC_ARRAY)
#! /usr/bin/perl
# The each function retrieves both keys and values from a hash
%weekday=(
'Mon' => 'Monday',
'Tue' => 'Tuesday',
'Wed' => 'Wednesday',
'Thu' => 'Thursday',
'Fri' => 'Friday',
'Sat' => 'Saturday',
'Sun' => 'Sunday',
);
while(($key,$value)=each(%weekday)){
print "$key = $value\n";
}