in reply to variable reference to subroutine while "strict"

another way:
my $name = "this"; my $code_ref = main->can($name); $code_ref->(...);
but i recommend using a dispatch table as shown here