Help for this page
sub f {a => 1, b=>2} my %h = (c => 3); say keys %h, f(); #output: c
D:\>perl -Mfeature=say sub f {a => 1, b=>2} ... ca1b2 D:\>