This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: gFortran problem compiling complex character strings
- From: dominiq at lps dot ens dot fr (Dominique Dhumieres)
- To: gcc-help at gcc dot gnu dot org
- Cc: colin at tuckley dot org
- Date: Sat, 15 Dec 2007 17:09:34 +0100
- Subject: Re: gFortran problem compiling complex character strings
> print *, 'Try one of "Skip", "Test", "Verbosity" or "Cleanup"'
Colin, your line is too long for the fixed form implied by the .f suffix:
the last ' is at column 73 and not considered by gfortran as part of the statement.
You can break your line, used the free form (implied by .f90) or remove some
spaces at the beginning of the line.
Good luck!
Dominique