my %actions = ( "n" => \&skip, "m" => \&movesong, # ... rest ommited ... "\n" => \&goto, ); #### sub interpretplay { if (exists $actions{$char}) { &$actions{$char}; } else { &invalid; }; };