The Meson Build System http://mesonbuild.com/
 
 
 
 
 
 

17 lines
219 B

module dynamic
implicit none
private
public :: hello
interface hello
module procedure say
end interface hello
contains
subroutine say
print *, "Hello from shared library."
end subroutine say
end module dynamic