in reply to Re^2: Dumping symbol table shows variables declared with our but not my
in thread Dumping symbol table shows variables declared with our but not my

I was always under the assumption that if it's not in a module, it's in main::

That's true for package variables, but lexical variables (the kind you get when you use my) are not package variables. They don't live in any package at all.

  • Comment on Re^3: Dumping symbol table shows variables declared with our but not my