Created starter files for the project.
This commit is contained in:
commit
73f0c0db42
1992 changed files with 769897 additions and 0 deletions
5
venv/Lib/site-packages/numpy/f2py/tests/src/mixed/foo.f
Normal file
5
venv/Lib/site-packages/numpy/f2py/tests/src/mixed/foo.f
Normal file
|
@ -0,0 +1,5 @@
|
|||
subroutine bar11(a)
|
||||
cf2py intent(out) a
|
||||
integer a
|
||||
a = 11
|
||||
end
|
|
@ -0,0 +1,8 @@
|
|||
module foo_fixed
|
||||
contains
|
||||
subroutine bar12(a)
|
||||
!f2py intent(out) a
|
||||
integer a
|
||||
a = 12
|
||||
end subroutine bar12
|
||||
end module foo_fixed
|
|
@ -0,0 +1,8 @@
|
|||
module foo_free
|
||||
contains
|
||||
subroutine bar13(a)
|
||||
!f2py intent(out) a
|
||||
integer a
|
||||
a = 13
|
||||
end subroutine bar13
|
||||
end module foo_free
|
Loading…
Add table
Add a link
Reference in a new issue