program hello ! Fortran 90 Program to print HELLO WORLD! ! Mathew Peet, http://mathewpeet.org, 2015 implicit none print*, "HELLO WORLD!" ! This is an inline comment end program hello