# 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";
## # bypass the prototype: print &foo( qw( one two three four ) ), "\n"; ##
## # bypass the prototype: print &foo( bar(@args) ), "\n";