Help for this page
use strict; our $a="func"; ... &$a(42); }
my %dispatch=( func1 => sub { print shift }, ... ); $dispatch{func1}->(42);