#!/usr/bin/perl -w use strict; use CGI ':standard'; use CGI::Carp 'fatalsToBrowser'; use Bio::Graphics; print header,start_html; print 'Hello there!
Just testing.
'; for my $i (0..9){ print $i.'
'; } print end_html;