(Fortran 77, Windows 2000)
I am trying to write to a file:
open (2, FILE='outputfile')
write(2,*) 'stuff'
write(2,*) 'more stuff'
...
write(2,*) 'yet more stuff'
The first line writes correctly. The following lines do nothing and I get no error or warning.
I tried commenting out the first...