vars
vars - Perl pragma to predeclare global variable names
use vars qw($frob @mung %seen);
This will predeclare all the variables whose names are
in the list, allowing you to use them under ``use strict'', and
disabling any typo warnings.
See Pragmatic Modules.