summaryrefslogtreecommitdiffstats
path: root/Tests/FortranOnly/objmod.f90
blob: 6b79cc792003926f0fa733c1bd92ccb5a2dbdb33 (plain)
1
2
3
4
5
6
7
module objmod
    implicit none
contains
    subroutine hello()
        print '(a)', "hello world"
    end subroutine hello
end module objmod