Help for this page

Select Code to Download


  1. or download this
    my $action = {
        dosomething => 'something'
    };
    my $method = $action->{dosomething};
    $obj->$method(@args);
    
  2. or download this
    my $action = {
      dosomething => sub { shift->something(@_) }
    ...
    my $whattodo = $action{dosomething};
    
    $whattodo->($obj, @args);