1 2 3 4 5 6 7
module objmod implicit none contains subroutine hello() print '(a)', "hello world" end subroutine hello end module objmod