in reply to quick amateurish question
A callback function is a function you pass to another function, such as visitor in the following example:
$tree->visit(\&visitor);
Since you can't get a reference to system, you can't pass a reference to system, so you couldn't use it as a callback even if it made sense to do so.
|
|---|