in reply to called too early to check prototype
I made a simple testing program, which has three parts:&func_abc($param_abc);
I played with it, with different sequences of the three parts(there are other combinations, you can play with them):sub say_something($); #prototype sub say_something { #sub body print "I got ".shift()."\n"; } say_something("an apple");# call the sub.
|
|---|