in reply to Re: Is it possible to get all variable names which are declared?
in thread Is it possible to get all variable names which are declared?
Looking into the symbol table like that would attempt to access the "global" (package) variables (those defined with our, for example), not to lexical variables (defined with my), which is apparently what the OP was looking for.