blob: 5407560d7ec6faa5734569c617991c232c0b438d [file] [log] [blame]
module static_hello
implicit none
private
public :: static_say_hello
interface static_say_hello
module procedure say_hello
end interface static_say_hello
contains
subroutine say_hello
print *, "Static library called."
end subroutine say_hello
end module static_hello