Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl 
    package Mymodule;
    ...
            return ($val1,  $val2);
            }
    1;
    
  2. or download this
    #!/usr/bin/perl 
    use strict;
    ...
    my $cow = 4;
    
    is( values($pig, $cow ),  (3 and 4),  "checking values" ) ;
    
  3. or download this
    ok 1 - use Mymodule;
    ok 2 - checking values
    1..2
    
  4. or download this
    is( values($pig, $cow ),  (3, 4),  "checking values" ) ;
    
  5. or download this
    ok 1 - use Mymodule;
    Useless use of a constant in void context at ./mymodule.t line 12.
    ok 2 - checking values
    1..2