On Monday, October 14, 2002, at 09:06 AM, Ramprasad A Padmanabhan wrote:
> Dear all, > > Is there a way I can write > print "Number of records = ++$records in the db\n"; > instead of > print "Number of records = " . ++$records . "in the > db\n"; print "Number of records = ", ++$records, "in the db\n"; ....but I doubt this is what you are looking for. What's wrong with the above choices, if you don't mind my asking? James -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]