[Fortran77] stops writing files

From: Kobrinsky (Kobrinsky_at_gmx.net)
Date: 01/26/05


Date: 25 Jan 2005 22:50:46 -0800

Doing some newbie-tries to write a file - I'm actually
using Fortran77, Debian/GNU Linux. Have a look at program:

[...]
open (2, FILE='outputfile')
write(2,*) 'stuff'
write(2,*) 'more stuff'
[...]
write(2,*) 'yet more stuff'

Since the first carriage return the second line of program doesn't
work anything. No error/warning occures by compiler. The following
lines do nothing. If I start at a foreward line [like setting a
comment at repeated/first line] then the next line is starting
correctly as usual until its following line [next line stops
again].

Checked until now:
- I tried to use a formatted output - nothing different happend,
- I checked out the standing to close this files per STOP, its ok.
|
Can anybody tell me a starting point to find whats going wrong?

I.K.