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
295 B
18 lines
295 B
9 years ago
|
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
|