This program prints "hello world!" to the screen
Compile using
gfortran filename.f90
or
ifort filename.f90
! this is a simple program, written for
! Fortran90
! should compile with either gfortran or ifort
! date
! author
program template
implicit none
integer :: somenumber
somenumber = 0
do i = 1, n
!...some big calculation...
end do
!write ( *, * ) 'Elapsed CPU time = ', t_stop - t_start
write ( *, * ) 'hello world!'
end program template