neverending search for highest number trashconnection Perl-generated web page (CGI) which, in an infinite random loop, searches for the highest number. Sourcecode:
#!/usr/bin/perl -w
# neverending search for the highest number
# created for the future
print "content-type: text/html\n\n";
for ( $a=int(rand 1000000); $a>0; $b=$a*$a+$b ) {
print "<font face=courier>$a\n$b\n";
}