Help for this page

Select Code to Download


  1. or download this
     OP *
     Perl_ck_require(pTHX_ OP *o)
    ...
     
         return ck_fun(o);
     }
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    $object1->method2;
    $object2->method1;
    $object2->method2;
    
  3. or download this
    Object 1: Method 1
    Object 1: Method 2
    ...
    Object 1: Method 2
    Object 2: Method 1
    Object 2: Method 2
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    remove_empty_tags( $parser, ['FONT','SPAN'] );
    
    print $parser->as_HTML, "\n";
    
  5. or download this
    #!/usr/bin/perl
    
    ...
      }
    }
    
  6. or download this
    #!/usr/bin/perl
    
    ...
            sub { $hash->{a1}->( $test ) }
        );
    }
    
  7. or download this
    #!/usr/bin/perl
    
    ...
    
    print $a, "\n";
    print $b, "\n";