Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fortran-external-function « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a2d85d3aa410ea3fceb8eb23224afed06191753 (plain)
1
2
3
4
5
6
7
8
9
function RIGHT(a, b) result(c)

integer, intent(in) :: ChangeMe
integer, intent(in) :: b
integer, intent(out) :: c

c = a+b

end function RIGHT