Iterating Over A Hash

Can iterate over all of the keys...
Or all of the values with .values, or
both at the same time with .keys
for %opinions.keys -> $what {
    say “Jonathan has a view on $what“;
}
# Print environment variables
    for %*ENV.kv -> $var, $value {
    say “$var = $value";
}
Type :next to continue