Help for this page

Select Code to Download


  1. or download this
    while ( my ( $name, $code ) = each %hash ) {
        no strict 'refs';
        *$name = $code;
    }
    
  2. or download this
    if ( my $method = $x->can('blah') ) {
        $x->$method;
    }