Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
                 $q->h1('hello world'),
                 $q->end_html;
       close OUT;
    
  2. or download this
    open (FILE, '/tmp/out.html') || die $!;
    while(my $row = <FILE>) { print $row }
    close FILE or die $!;