&func_abc($param_abc); #### sub say_something($); #prototype sub say_something { #sub body print "I got ".shift()."\n"; } say_something("an apple");# call the sub.