> for my ($index = 0; $index <= 10; $index++) { > > print ("$hour:$min:$sec\n"); > > }
for my $index (0..10){ print ("$hour:$min:$sec\n"); } hth -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/