FORTRAN: Invalid form for an assignment?

Assuming that the spacing in your snippet is reflective of what's actually in the source code, your compilers might getting confused with line-continuation characters (which, in archaic FORTRAN style fall in Column 6) or line number characters (Columns 1-5). There are a few things you could try: Enable free-form source in the compilation options Rename the file from myfile. F to myfile.

F90 and recompile with g95 As always, when dealing with older-style code, the standard warnings such as "Always use implicit none also apply.

Boy, do I miss card decks for coding. Wait...no I don't. – Will Hartung May 25 '10 at 21:58 You got that right - don't trip!

– Tim Whitcomb May 25 '10 at 22:02.

Sometimes your compiler will treat tabs in a badway, not knowing with how many spaces to replace them. It will then output seemingly random errors, because it doesn't understand where the line header is.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions