git/t/t4018/fortran-external-function

10 lines
144 B
Plaintext

function RIGHT(a, b) result(c)
integer, intent(in) :: ChangeMe
integer, intent(in) :: b
integer, intent(out) :: c
c = a+b
end function RIGHT