use strict; my $func_ref = \&{'function1'}; $func_ref->( 1 .. 3 ); # Or... &$func_ref( 1 .. 3 ); sub function1{ print "I gots: ", join("+", @_), $/ }