Help for this page

Select Code to Download


  1. or download this
    &{                            # call the result of the block as a sub
      $self->{                    # lookup in hash $self the result of
              $dispatch{$command} # lookup $command in %dispatch
             }
     }();                         # call the sub with no arguments
    
  2. or download this
     &{$dispatch{$command}}($self);