in reply to Re^3: symboltable problem
in thread symboltable problem
I find this illustration quite amusing:
btw: Is there a nicer way to create a typeglob with a given value in the scalar-slot?use strict; our $foo = "old value\n"; %:: = (%::); our $var = "new value\n"; $::{foo} = *var; print $foo; eval q| print $foo |;
|
---|