Help for this page

Select Code to Download


  1. or download this
    my $foo = Foo::Bar->new();
    isa_ok( $foo, 'Foo::Bar' );
    
  2. or download this
    while ( my $line = <> ) {
        my $foo = Foo::Bar->parse( $line );
        isa_ok( $foo, 'Foo::Bar' );
        ...
    }