in reply to variable reference to subroutine while "strict"

Another way is to temporarily turn of strict-ness for refs:
use strict; my $ref="this"; my $x; { no strict 'refs'; $x=&$ref(); } print "$x\n"; sub this {return "hi!"}