私はfortranが初めてで、これを出力として実行しようとしています。
program write2file
implicit none
! open file
open (10, file='output_file.txt', status='unknown')
! write to file
write(10, *) 'Hello World!'
! close file
close(10)
end program write2file
Linux で実行しており、このステートメントを使用して出力をコンパイルおよび実行しようとしましたが、残念ながら、「output_file.txt」を取得できませんでした。
誰が何が悪いのか知っていますか?