my %functions=(
hallo =>
sub {
print "hallo welt\n";
},
adee =>
sub {
print "adee du schnöde welt\n";
},
);exists $functions{ $eviluserinput }
and $functions{ $eviluserinput }->();
Hatte ich mir zwar anders vorgestellt, ist aber super die Lösung! :)
Vielen Dank,
Take