aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/numpy/f2py/tests/src/regression/gh25337/data.f90
blob: 483d13ceb95c08bf38b74d8218932fc109792b09 (about) (plain)
1
2
3
4
5
6
7
8
module data
   real(8) :: shift
contains
   subroutine set_shift(in_shift)
      real(8), intent(in) :: in_shift
      shift = in_shift
   end subroutine set_shift
end module data