> for my $number ( 0 .. 100 ) {
> print $number * 10, "\n";
> }
Or if you enjoy perl golf:
print map {($_*10)."\n"} 0..100;
- B
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
