summaryrefslogtreecommitdiff
path: root/numpy/f2py/docs/usersguide/scalar.f
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/f2py/docs/usersguide/scalar.f')
-rw-r--r--numpy/f2py/docs/usersguide/scalar.f12
1 files changed, 0 insertions, 12 deletions
diff --git a/numpy/f2py/docs/usersguide/scalar.f b/numpy/f2py/docs/usersguide/scalar.f
deleted file mode 100644
index c22f639ed..000000000
--- a/numpy/f2py/docs/usersguide/scalar.f
+++ /dev/null
@@ -1,12 +0,0 @@
-C FILE: SCALAR.F
- SUBROUTINE FOO(A,B)
- REAL*8 A, B
-Cf2py intent(in) a
-Cf2py intent(inout) b
- PRINT*, " A=",A," B=",B
- PRINT*, "INCREMENT A AND B"
- A = A + 1D0
- B = B + 1D0
- PRINT*, "NEW A=",A," B=",B
- END
-C END OF FILE SCALAR.F