John W. Krahn wrote: > > > > > For the subscribers who don't already know, > > what are the differences between my > > > > print for 1..5 > > for iterates over the list 1..5 and sets $_ with each value and then > print is called for each item and print out the value in $_. > > > and Tore's > > > > print 1..5 > > print is passed the list 1..5 and prints it out. > > > ? (Deep magic here!) > > Not really. :-)
Hi John. I would count you amongst those who already knew, so your entry doesn't qualify! And no, it's just Perl magic, not Perl Magic :) Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]