in reply to use variable from main file in a 'require'd file?

If I declare %CONFIG with our and put the declaration and setting before the require, this works fine for me. I have this:

t57:

#!/usr/bin/perl -w use strict; our %CONFIG = (key => 'value'); require 't57.pl';

t57.pl:

warn "\$CONFIG{key}: $CONFIG{key}\n"; 1;