> In Perl that is usually written as: > > for $count ( 1 .. 5 ) { > print "$count\n"; > }
Or even easier: for(1..5) { print; } Or if you nee the newline: for(1..5) { print "$_\n"; } HTH DMuey > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]