我无法让一段简单的 fortran90 代码工作。这是 helloworld.f90 的代码:
PROGRAM hello
IMPLICIT NONE
PRINT *,"Hello world!"
END PROGRAM hello
当我编译和构建时,没有错误。但是只要我点击执行,命令提示符就会出现这个错误:
'"./helloworld"' is not recognized as an internal or external command, operable program or batch file.
我如何让它工作?我使用 geany 作为 IDE,在使用 Ubuntu linux 时它工作得很好。当我在 Windows 7 下运行它时,我遇到了这个问题。这些是编译和构建命令:
Compile: gfortran -Wall -c "helloworld.f90" (in directory: C:\Users\Eddy\Documents\Code\Fortran)
Build: gfortran -Wall -o "helloworld" "helloworld.f90" (in directory: C:\Users\Eddy\Documents\Code\Fortran)