blob: 90a8cf00cb47e331e514dfce7ff193375c7731dd (
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
|