Hi,
I am a pretty new user in Fortran and I am trying to use openrw@ routine as follows and it doesn't return zero even though it creates the file. Am I doing something wrong?
Program check implicit none integer handle, error_code character (len=40) dosya1 call openrw@ ('dosya1',handle, error_code) if (error_code.eq.0) then write(,) 'Operation was successfull' else write(,) 'Operation was NOT successfull' end if end