GerritGroot
Technical User
Hi,
I was using EOF to check for the end of file, like...
But it doesn't seem to be standard fortran 90.
Is there a neat fortran 90 way to steer clear of this without using linenumbers (like ERR=100)?
Thanks,
Gerrit
I was using EOF to check for the end of file, like...
Code:
DO WHILE(.NOT.EOF(1))
READ(1,*)MyVariable
END DO
But it doesn't seem to be standard fortran 90.
Is there a neat fortran 90 way to steer clear of this without using linenumbers (like ERR=100)?
Thanks,
Gerrit