summaryrefslogtreecommitdiff
path: root/numpy/f2py/docs/usersguide/string.f
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/f2py/docs/usersguide/string.f')
-rw-r--r--numpy/f2py/docs/usersguide/string.f21
1 files changed, 0 insertions, 21 deletions
diff --git a/numpy/f2py/docs/usersguide/string.f b/numpy/f2py/docs/usersguide/string.f
deleted file mode 100644
index 9246f02e7..000000000
--- a/numpy/f2py/docs/usersguide/string.f
+++ /dev/null
@@ -1,21 +0,0 @@
-C FILE: STRING.F
- SUBROUTINE FOO(A,B,C,D)
- CHARACTER*5 A, B
- CHARACTER*(*) C,D
-Cf2py intent(in) a,c
-Cf2py intent(inout) b,d
- PRINT*, "A=",A
- PRINT*, "B=",B
- PRINT*, "C=",C
- PRINT*, "D=",D
- PRINT*, "CHANGE A,B,C,D"
- A(1:1) = 'A'
- B(1:1) = 'B'
- C(1:1) = 'C'
- D(1:1) = 'D'
- PRINT*, "A=",A
- PRINT*, "B=",B
- PRINT*, "C=",C
- PRINT*, "D=",D
- END
-C END OF FILE STRING.F