Files
edx-platform/numpy-1.6.2/numpy/f2py/docs/usersguide/fib2.pyf

10 lines
243 B
Plaintext

! -*- f90 -*-
python module fib2
interface
subroutine fib(a,n)
real*8 dimension(n),intent(out),depend(n) :: a
integer intent(in) :: n
end subroutine fib
end interface
end python module fib2