in reply to Re: How do I push values onto an existing hash?
in thread How do I push values onto an existing hash?

> don't have to test the banana

unless of course I called it with

abc( banana => undef, eat => 'mon' ); sub abc { my %param = ( apples => 'green', banana => 'yellow', @_ ); # now just have to figure out the 'mon' key... # and the banana colour! }
Thanks for both suggestions! doh! 8-)