http://www.perlmonks.org?node_id=67979


in reply to Ways of commenting subroutines

I use inline POD so I only have to make a change in one place if the function changes:
################### # =pod =item displayform Usage: displayform( ['message to user']); Displays a form for the user to fill out for submission to ARS Server. Required field for the form is 'problem' (body text). There is an optional string parameter to this function that will display a message along with the form. =cut # ################### sub displayform { ...

--sacked