in reply to Re: Package variables
in thread Package variables

You can also initially declare them in a package:
use strict; # just to prove my point package hidden; $hidden::foo = "This is the first time I've been used."; package main; print $hidden::foo;