mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 15:18:26 -05:00
45513c1a69
It involves modules, so it belongs in the `FortranModules` test set.
8 lines
142 B
Fortran
8 lines
142 B
Fortran
module objmod
|
|
implicit none
|
|
contains
|
|
subroutine hello()
|
|
print '(a)', "hello world"
|
|
end subroutine hello
|
|
end module objmod
|