How can I have an open statement:
OPEN(Unit=1,File='data.txt',...)
and be able to later have a write statement:
WRITE(*,15)
15 FORMAT('Data was collected from ',?,'file:')
where the ? would call in the file name. Also, when I type 'file:', it creates a link to something. How...