mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-14 21:41:06 -05:00
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
|