Topic: Really elementary Fortran stuff
I haven't done any Fortran programming for nearly 30 years apart from a brief flurry about 4 years ago when I found a free Fortran 90 compiler online. It doesn't work with a 64-bit processor so SimplyFortran seems like the answer to my needs.
I'm attempting to build a program that compiled and ran satisfactorily in Fortran 90 but it's giving me the following errors. For this first one, I can't even tell which line of code it's referring to:
Compiling ..\..\..\..\Documents\Simply Fortran\Process.for
..\..\..\..\Documents\Simply Fortran\Process.for:2:72: Error: Invalid character in name at (1)
For the second, all these arrays were dimensioned without an error message:
read (77,*,end=1000) utme(i),utmn(i),var(i)
1
Error: Syntax error in READ statement at (1)
..\..\..\..\Documents\Simply Fortran\Process.for:47:72: Error: Unexpected STATEMENT FUNCTION statement at (1)
..\..\..\..\Documents\Simply Fortran\Process.for:70:27:
Does anyone know what might be wrong? Thanks
Failing that, can anyone recommend a primer or online course so I don't have to ask so many of these elementary questions?