Bryan Harris wrote:
>
>>for my $number ( 0 .. 100 ) {
>> print $number * 10, "\n";
>> }
>
>
> Or if you enjoy perl golf:
>
> print map {($_*10)."\n"} 0..100;You call that golf? print map$_*10 .$/,0..100; John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>
