7.2.76 vars - Predeclare Global Variable Namesuse vars qw($frob @mung %seen);
This module predeclares all variables whose names are
in the list, allowing you to use them under
Packages such as the AutoLoader and SelfLoader that delay loading
of subroutines within packages can create problems with file-scoped lexicals
defined using
my
. This is because they move the subroutines outside
the scope of the lexical variables.
While the |
|