in reply to Setting variables inside a hash: newbie question
if I update a variable value later on, it will not pick up the changed value
You need to store a reference, rather than simply copying the value. Example:
my $foo = "foo"; my %hash = (foo => \$foo); print ${$hash{foo}}; $foo = "bar"; print ${$hash{foo}};
|
|---|