2023-07-26 10:08:00 +02:00

8 lines
142 B
Fortran

module objmod
implicit none
contains
subroutine hello()
print '(a)', "hello world"
end subroutine hello
end module objmod