in reply to can't use string as a SCALAR ref while strict refs
my $b = '1'; my $a = \$b; $$a = '2'; # ${$a} = '2'; print $b; [download]