in reply to Re^2: What is the purpose of local *_ = \my $a in File::Find?in thread What is the purpose of local *_ = \my $a in File::Find?
$ perl -E'local *_ = \my $s; $_ = 123; say $s; $s = 456; say $_;' 123 456 [download]