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;

Have a nice day
All decision is left to your taste