clone, submodule: pass partial clone filters to submodules
[git.git] / t / t4018 / fortran-external-function
blob5a2d85d3aa410ea3fceb8eb23224afed06191753
1 function RIGHT(a, b) result(c)
3 integer, intent(in) :: ChangeMe
4 integer, intent(in) :: b
5 integer, intent(out) :: c
7 c = a+b
9 end function RIGHT