Tore Aursand wrote:
>
> On Thu, 13 Nov 2003 09:05:45 -0600, Dan Muey wrote:
> >> In Perl that is usually written as:
> >>
> >> for $count ( 1 .. 5 ) {
> >>     print "$count\n";
> >> }
>
> > Or even easier:
> > for(1..5) { print; }
>
> Or _even_ easier;
>
>   print 1..5;


For the subscribers who don't already know,
what are the differences between my

  print for 1..5

and Tore's

  print 1..5

? (Deep magic here!)

Rob



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to