8 lines
273 B
Fortran
Raw Normal View History

2016-10-30 18:24:19 +01:00
program main
use parent, only : child_function,grandchild_subroutine
2018-08-09 18:06:22 +02:00
use parent, only : sibling_function,GreatGrandChild_subroutine
2016-10-30 18:24:19 +01:00
implicit none
if (child_function()) call grandchild_subroutine
2018-08-09 18:06:22 +02:00
if (sibling_function()) call GreatGrandChild_subroutine
2016-10-30 18:24:19 +01:00
end program