Help for this page
# honour the prototype: print foo( one => qw( two three four ) ), "\n";
# bypass the prototype: print &foo( qw( one two three four ) ), "\n";
# bypass the prototype: print &foo( bar(@args) ), "\n";