aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/numpy/f2py/tests/src/crackfortran/gh23598.f90
blob: e0dffb5ef29e3d5ba853ff4dfeda57b2bed6a9dc (about) (plain)
1
2
3
4
integer function intproduct(a, b) result(res)
  integer, intent(in) :: a, b
  res = a*b
end function