How do I make private functions in a Perl module?
From perldoc perltoot (about a quarter way through the document): Perl doesn’t impose restrictions on who gets to use which methods. The public-versus-private distinction is by convention, not syntax. (Well, unless you use the Alias module described below in “Data Members as Variables”.) Occasionally you’ll see method names beginning or ending with an underscore or … Read more