Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <9A4B2157EFDBE546BECD68C62AC3B1C8140073E9@es05snlnt.sandia.gov> From: "Kooser, Ara S" To: "'cygwin AT cygwin DOT com'" Subject: EOF error Date: Wed, 3 Dec 2003 15:01:52 -0700 MIME-Version: 1.0 X-PMX-Version: 4.1.0.80455 X-WSS-ID: 13D082D91746-01-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hello, I am new to the list and using cygwin. I read through the other posts about EOF errors and I tried those solutions. But I am still having a problem. I am learning to program in fortran. I am using gcc to compile the following program: PROGRAM TEMP ********************************************************* *This program converts Celsius to Farenheit * * * *The variable used is: * * DEGC : degress celsius * ********************************************************* REAL DEGC, DEGF PRINT * , 'ENTER THE TEMPERATURE IN DEGRESS C:' READ * , DEGC DEGF = 9 / 5 * DEGC + 32 PRINT * , 'DEGRESS FARENHEIT:' , DEGF END I compiled it with this command gcc -o projec -c projec.f The program compiles but will not run when I type ./projec It receive the following error: ./projec: 124: Syntax error: EOF in backquote substitution If anyone can help that would be great. Thank you for your time. Ara -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/