Help for this page
sub mergedHashKeys{ my( $r1, $r2 ) = @_; ... pp mergedHashKeys( $hash1, $hash2 );; ["hash2_specific_key", "common_key", "hash1_specific_key"]
sub mergedHashKeys{ [ keys %{{ %{ $_[0] }, %{ $_[1] } }} ] };;