Select an installed module below |
NAMEsubs - Perl pragma to predeclare sub names
SYNOPSIS
use subs qw(frob);
frob 3..10;
DESCRIPTIONThis will predeclare all the subroutine whose names are in the list, allowing you to use them without parentheses even before they're declared. Unlike pragmas that affect the See perlmodlib/Pragmatic Modules and strict/strict subs.
|
|