Re: Something wrong with my one line code

2001-06-15 Thread Brett W. McCoy
On Fri, 15 Jun 2001, Luinrandir Hernson wrote: > This line of code in a perl script comes up with errors. > What am I missing? problems with the word print? > Am I missing a "/" somewhere for a reserved word? maybe the 2nd "Print"? > > print " onClick=\"parent.main.print()\">\n; You are missing

Re: Something wrong with my one line code

2001-06-15 Thread David Labatte
Timothy Kimball wrote: > Luinrandir Hernson wrote: > : This line of code in a perl script comes up with errors. > : ... > : print "onClick=\"parent.main.print()\">\n; > > Needs a closing quote after the \n. -- tdk I'm jumping into the middle of a thread here, but for readability why not try some

RE: Something wrong with my one line code

2001-06-15 Thread Chris Mulcahy
Crazy reply sending directly to the originator... grr... Sent privately (thanks to reply-to:) as well as to the list. Sorry, Luinrandir. -- Well, there's no ending quote between \n and ;. What's the error message? Is this an exact copy and paste? This looks fine other than the ending quote

Re: Something wrong with my one line code

2001-06-15 Thread Timothy Kimball
Luinrandir Hernson wrote: : This line of code in a perl script comes up with errors. : ... : print "\n; Needs a closing quote after the \n. -- tdk

RE: Something wrong with my one line code

2001-06-15 Thread Greg Smith
Missing the " at the end of the line Try this: print "\n"; Greg S. > -Original Message- > From: Luinrandir Hernson [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 15, 2001 11:02 AM > To: [EMAIL PROTECTED] > Subject: Something wrong with my one line code > > > This line of code in a per