blob: 1e1dc1d4054b36d2b2d9104e8d6ab708361bfbe8 (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
subroutine func1(n, x, res)
use, intrinsic :: iso_fortran_env, only: int64, real64
implicit none
integer(int64), intent(in) :: n
real(real64), intent(in) :: x(n)
real(real64), intent(out) :: res
!f2py intent(hide) :: n
res = sum(x)
end
|