in reply to Re^4: How to call a sub reff from a hash
in thread How to call a sub ref from a hash

Your wrong code:

$Procedures->{$Procedure}($Parameter); ^^^^^^^^^^^ Not a hash. Undeclared and uninitialized scalar.

The correct code:

$Procedures{$Procedure}->($Parameter); ^^^^^^^^^^^^^^^^^^^^^^^ Element of a hash

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.