Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    
    ...
    
    sub make_fun_of { "I think @_ is funny." }
    
  2. or download this
    use Test::Simple 'no_plan';
    require './bin/script'; # ?????
    
    for (qw/james cindy susan rob/){
       ok( make_fun_of($_) );
    }