# some module code # ... { my %some_global = ( ... ); sub fred { # fred() is the only function in the module # that uses %some_global # ... } } # the %some_global variable is not in scope here. # ... rest of module