Fortran Wiki
hello

The hello program prints the text “Hello, world!”

! hello.f90 -- "Hello, World" in Fortran 90
program hello
    print *, "Hello, world!"
end program hello

Author: Jason Blevins

License: Public domain (or BSD license, MIT license, GPL license)

category: code