meson/test cases/fortran/6 dynamic/dynamic.f90

18 lines
227 B
Fortran
Raw Normal View History

2015-08-30 22:13:48 +08:00
module dynamic
implicit none
private
public :: hello
interface hello
module procedure say
end interface hello
contains
subroutine say
print *, "Hello, hello..."
end subroutine say
end module dynamic