The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
227 B
18 lines
227 B
9 years ago
|
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
|