mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
6 lines
150 B
Fortran
6 lines
150 B
Fortran
program main
|
|
use parent, only : child_function,grandchild_subroutine
|
|
implicit none
|
|
if (child_function()) call grandchild_subroutine
|
|
end program
|