llvm-project/flang/test/Frontend/Inputs/hello-world.f90

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