blob: 1d52e47bbb7bc005ee353507c01cc7e8ce7fc2c8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
subroutine addb(k)
real(8), intent(inout) :: k(:)
k=k+1
endsubroutine
subroutine addc(w,k)
real(8), intent(in) :: w(:)
real(8), intent(out) :: k(size(w))
k=w+1
endsubroutine
|