autocmake/test/fc/src/module.f90
2015-08-01 10:41:06 +02:00

8 lines
118 B
Fortran

module foo
implicit none
contains
subroutine hello()
print *, 'Hello World!'
end subroutine
end module