summaryrefslogtreecommitdiff
path: root/tests/projects/fortran/shared_library/src/test.f90
blob: b1e97a36cd97a388954bdaf31fc920e02fe7c46f (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