RosettaCodeData/Task/Special-variables/Fortran/special-variables.f
2017-09-25 22:28:19 +02:00

4 lines
254 B
Forth

INQUIRE(FILE = FILENAME(1:L),EXIST = EXIST, !Here we go. Does the file exist?
1 ERR = 666,IOSTAT = IOSTAT) !Hopefully, named in good style, etc.
IF (EXIST) THEN !So, does the named file already exist?
...etc.