perl5.001 patch.1f
[p5sagit/p5-mst-13.2.git] / pod / modpods / subs.pod
1 =head1 NAME
2
3 subs - Perl pragma to predeclare sub names
4
5 =head1 SYNOPSIS
6
7     use subs qw(frob);
8     frob 3..10;
9
10 =head1 DESCRIPTION
11
12 This will predeclare all the subroutine whose names are 
13 in the list, allowing you to use them without parentheses
14 even before they're declared.
15
16 See L<perlmod/Pragmatic Modules> and L<strict/subs>.