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.
 
 
 
 
 
 

16 lines
244 B

module main_lib
use static_hello
implicit none
private
public :: main_hello
contains
subroutine main_hello
call static_say_hello()
print *, "Main hello routine finished."
end subroutine main_hello
end module main_lib