RE: print statment

2001-04-23 Thread King, Jason
David Gilden writes .. >Original from the class: > >print "\n"; > > >Is this bad style? yep .. avoid backwhacks at all costs - that's my opinion >print '',"\n"; > >better? yep .. much better >print ''. "\n"; also good - but generally accepted as inferior to the second snippet >I do believe

RE: print statment

2001-04-24 Thread Paul
And for those with embedded JavaScript to write, in which you already have too many quotes: =o) print< wrote: > David Gilden writes .. > > >Original from the class: > > > >print " checked>\n"; > > > > > >Is this bad style? > > yep .. avoid backwhacks at all costs - that's my opinion > > > >