8 lines
142 B
Fortran
Raw Normal View History

2023-07-26 10:08:00 +02:00
module objmod
implicit none
contains
subroutine hello()
print '(a)', "hello world"
end subroutine hello
end module objmod