I am looking at Fortran code and while I can understand most of it.
I am dealing with a section of code.
Now there are some
OPEN(UNIT=60,FILE,STATUS)
OPEN(UNIT=61,FILE,STATUS)
OPEN(UNIT=62,FILE,STATUS)
But further down there is a
WRITE(6,110)
WRITE(6,120)
WRITE(6,130)
Now I want to know if I am getting this right.
Does this print out print statements made later in the file, to the screen.
Example:
110 FORMAT(' LINE 110 ')
120 FORMAT(' LINE 120 ')
I appreicate any help from anyone that knows fortran.
I am dealing with a section of code.
Now there are some
OPEN(UNIT=60,FILE,STATUS)
OPEN(UNIT=61,FILE,STATUS)
OPEN(UNIT=62,FILE,STATUS)
But further down there is a
WRITE(6,110)
WRITE(6,120)
WRITE(6,130)
Now I want to know if I am getting this right.
Does this print out print statements made later in the file, to the screen.
Example:
110 FORMAT(' LINE 110 ')
120 FORMAT(' LINE 120 ')
I appreicate any help from anyone that knows fortran.
