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.

11 lines
344 B
Raku

%presidents = ( George => "Washington",
Abe => "Lincoln",
Thomas => "Jefferson",
Harry => "Truman" );
# obtain the list of keys and display each key-value pair
@keys = keys( %presidents );
@values = values( %presidents );
print "\nThe values of the hash are:\n@values\n\n";