summaryrefslogtreecommitdiff
path: root/tests/projects/fortran/shared_library/src/main.f90
blob: 9adea3e26ed98c6c45aa74b2d37f0b36b0660728 (plain)
1
2
3
4
5
program hello
    use test, only: print_hello
    implicit none (type, external)
    call print_hello()
end program hello