Help for this page

Select Code to Download


  1. or download this
    sub whatever {
        #...
        my ($method) = ( caller(0) )[3];
        #...
    }
    
  2. or download this
    sub whatever {
        #...
        my $method= "whatever";
        #...
    }