I'm working on a perl module that neads to read some configuration numbers. Here's my problem, I need to find a list of every subroutine in that pm. So if I have say:
sub blah1 { ... }
sub blah2 { ... }
then is there a way I can get blah1, blah2 in a list while I'm coding in that pm?? Thanks for any help.