hi all,
I observe very strange behaviour of Silverfrost fortran with file manipulating routines. I couldn't spot it whether it was due to my lack of knowledge or erratic behaviour of compiler. I run the following code and it suppose to create the new_file.dat under the folder of current project.
But actually it does nothing. What's wrong here ?
program test
implicit none
open(11,file='new_file.dat')
write(11, '(a15)') ' The value'
stop
end program test