You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
357 B
Perl

#!/usr/bin/perl
print "Content-Type: text/html \n\n";
$random_number = rand(10);
print "<p>Your Auto Lucky Number from 1 to 10 is $random_number.</p>\n";
$random_integer = int(rand(10)) + 1;
print "<p>Your Auto Lucky Integer from 1 to 10 is $random_integer.</p>\n";
print "Click the Reload button on your browser to get a new random number.";