=pod =head2 mySubroutine Takes no argument. This is a sample example to show my idea about documentation using both comments and POD. =cut sub mySubroutine { print 'This is a sample subroutine.', "\n"; # prints this text because it's a simple example. } mySubroutine();