in reply to Re: Functions in Perl
in thread Functions in Perl

I know it is obvious but the OP might learn something from it:

sub args { print "$_\n" for @_ } args( qw( Perl is fun ) );