mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
10 lines
144 B
Text
10 lines
144 B
Text
|
function RIGHT(a, b) result(c)
|
||
|
|
||
|
integer, intent(in) :: ChangeMe
|
||
|
integer, intent(in) :: b
|
||
|
integer, intent(out) :: c
|
||
|
|
||
|
c = a+b
|
||
|
|
||
|
end function RIGHT
|