blob: e78a406900c9322666b09f632985a14b74b6ef95 [file] [log] [blame]
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