Help for this page

Select Code to Download


  1. or download this
    my $score = result_of_a_function();
    
    cmp_ok($score, '==', 0, 'scores 0 in blablabla context');
    
  2. or download this
    print $score;
    
  3. or download this
    is($score, 0, 'scores 0 in blablabla context');
    
  4. or download this
    1>undef
    
  5. or download this
    cmp_ok($got, '<', $expected)