#!/usr/bin/perl -wT use strict; use CGI; my $q = new CGI; my $timestamp=localtime; my $balance=sprintf "%d", rand 10000; print "Content-type: text/html\n\n"; print ""; print "
Bank account:
balance = $balance
"; print "
Generated on
$timestamp
"; print "Not Cached
"; print "
";