This is my patch patch.1g for perl5.001.
[p5sagit/p5-mst-13.2.git] / lib / subs.pm
index 8b58357..0dbbadd 100644 (file)
@@ -1,5 +1,23 @@
 package subs;
 
+=head1 NAME
+
+subs - Perl pragma to predeclare sub names
+
+=head1 SYNOPSIS
+
+    use subs qw(frob);
+    frob 3..10;
+
+=head1 DESCRIPTION
+
+This will predeclare all the subroutine whose names are 
+in the list, allowing you to use them without parentheses
+even before they're declared.
+
+See L<perlmod/Pragmatic Modules> and L<strict/subs>.
+
+=cut
 require 5.000;
 
 $ExportLevel = 0;