25 lines
491 B
Fortran
Executable File
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
|
|
|