pantry/projects/numpy.org/test.f90

6 lines
142 B
Fortran
Raw Normal View History

! example.f90
subroutine add_numbers(a, b, c)
real, intent(in) :: a, b
real, intent(out) :: c
c = a + b
end subroutine add_numbers