musrsim/test/test.f90
2007-09-25 14:27:20 +00:00

25 lines
491 B
Fortran
Executable File

! test.f90
!
! FUNCTIONS:
! test - Entry point of console application.
!
! Example of displaying 'Hello World' at execution time.
!
!****************************************************************************
!
! PROGRAM: test
!
! PURPOSE: Entry point for 'Hello World' sample console application.
!
!****************************************************************************
program test
implicit none
print *, 'Hello World'
end program test