in reply to Re^2: Dynamically Calling a Subroutine
in thread Dynamically Calling a Subroutine
The string inside the curlies is the key we'll use to access the symbol table.
The *{...} (the glob reference syntax) is essentially saying "find the symbol table entry that contains references to all the things with this name".
The ->() following the dereference says "call what the CODE slot references in this entry." It the sub had arguments, you could put them in the parens.
|
|---|