Hi,
I am trying to verify that I have passed over all the functions in the code.
Is there a quick way to tell the function name I am in?
e.g.
&function1;
sub function1 {
print "function 'function1' - start\n";
... do something ...
print "function 'function1' - end\n";
}