summaryrefslogtreecommitdiff
path: root/xmake/templates/fortran/static/project/src/test.f90
blob: 7b215fcdfe20b08b1d3cdfdd6260e0f2f6a54bee (plain)
1
2
3
4
5
6
7
8
module test
    implicit none (type, external)

contains
    subroutine print_hello()
        print *, "Hello World!"
    end subroutine print_hello
end module test