Help for this page

Select Code to Download


  1. or download this
    package pm::mytest;
    
    ...
      return 'Hello from pm:mytest';
    }
    1;
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    my $q = CGI->new;
    print $q->header,$q->start_html,
    $q->h1($msg),$q->end_html;