my $subref = \&foo; my @args = ( 4, 2 ); $subref->( @args ); sub foo { die "@_" } __END__ 4 2 at - line 4.