Help for this page

Select Code to Download


  1. or download this
    use Test::More tests => 4;
    BEGIN { use_ok('Mytest') }
    ok( Mytest::is_even(0) == 1 );
    ok( Mytest::is_even(1) == 0 );
    ok( Mytest::is_even(2) == 1 );
    
  2. or download this
    >type !.pl
    use Test::More tests => 4;
    ...
    ok 2
    ok 3
    ok 4