summaryrefslogtreecommitdiff
path: root/doc/source/f2py/code/fib2.pyf
blob: 4a5ae29f1ecae50a8ff1ddf91f234b0c341f0825 (plain)
1
2
3
4
5
6
7
8
9
!    -*- 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