Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    is( f(), 32, 'f() returns 32' );
    is( c(), 0, 'c() returns 0' );
    
  2. or download this
    my $temp = My::Temp::Thing->new();
    $temp->set_c(0);
    is( $temp->get_f(), 32, '0 c is 32 f' );