2023-09-21 23:15:15 +02:00

8 lines
142 B
Fortran

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