$ cat test.pl
use strict;
use warnings;
sub route {
print "hello, world!";
}
my %h;
$h{'a'} = 'route';
print "1\n";
$h{a};
print "2\n";
$h{a}();
print "3\n";
"$h{a}".();
$ perl test.pl
Useless use of hash element in void context at test.pl line 12.
Useless use of concatenation (.) or string in void context at test.pl line 18.
1
2
Can't use string ("route") as a subroutine ref while "strict refs" in use at test.pl line 15.
$
What is the right way to call route()?
You’re trying to use $h{a} as a symbol reference. And that’s explicitly disallowed by “use strict”. If you turn off strict mode, then you can do it like this:
But the best approach is to store a “real” reference to the subroutine in your hash.