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