Help for this page

Select Code to Download


  1. or download this
    my $rv;
    if (!eval { $rv = $doomsday_weapon->$method(@args); 1 }) {
       die("Doomsday weapon failed: $@\n");
    }
    
  2. or download this
    my $method_ref = $doomsday_weapon->can($method)
       or die("Method $method not supported by this doomsday weapon\n");
    ...
    }
    
    my $rv = $doomsday_weapon->$method_ref(@args);