Subject: | dynamically HELEM moves the SV out of the way |
Behaves like `local`:
use Syntax::Keyword::Dynamically;
my %h = ( key => "orig" );
my $sref = \$h{key};
{ dynamically $h{key} = "new"; print "inside $$sref " }
print "outside $$sref"
Results:
inside orig outside orig
Expected:
inside new outside orig
--
Paul Evans