Hi, This is clearly an issue of my not understanding how to tell Plato/Ftn95 where to find data and source files. In the test piece of code below, the file 'test.dat' appears invisible. I created it using a test editor in the same directory as the .f95 file. When the open statement is reached the file 'does not exist'.
character*4 a
open(unit=10,file='test.dat',status='old')
read(10,'(a)') a
write(6,'(a)') a
stop
end
How do I associate filenames with unit numbers? Is there a way to tell Plato 'find the file here'? Is there an equivalent of 'ln -s test.dat fort.10' in Unix? Or is it done through env variables? How?
A (presumably) related problem is the debugger not finding the source code file. When I use the little green arrow to run the prog, the source code window is blank. I would appreciate advice on these...
Thanx, Travis