vim test.f90
添加代码如下:
program hello
print *, "Hello World"
end program hello
进行编译和运行
gfortran test.f90 -o test
./test
即可。
vim test.f90
添加代码如下:
program hello
print *, "Hello World"
end program hello
进行编译和运行
gfortran test.f90 -o test
./test
即可。