http://qs321.pair.com?node_id=24124


in reply to RE: RE: i thought i knew 'our'...
in thread i thought i knew 'our'...

Something like that, yes. Because the variables are put into the symbol table, they are global. In fact, 'our' has no semantical effect unless you use strict vars, so:
our $foo = 1;
and
$foo = 1;
shouldn't be different at all. It is first when you introduce use strict vars that the our keyword will have a different semantical effect.

Autark.