6 lines
127 B
Fortran
6 lines
127 B
Fortran
!This is a test file with a hello world in Fortran
|
|
program hello
|
|
implicit none
|
|
write(*,*) 'Hello world!'
|
|
end program hello
|