Re: getting the value of a var



> #symbol table
> my $st = eval '\%$module::';

correction,
my $st = eval '\%'. $module .'::';

> # scalar reference
> $sref = *{ $st->{content} }{SCALAR};
> print $$sref;
.