aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/numpy/py2/numpy/f2py/src/test/foo90.f90
blob: dbca7e95ba88aca33a2dcb85cb2cae29430af468 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
subroutine foo()
  integer a
  real*8 b,c(3)
  common /foodata/ a,b,c
  print*, "   F: in foo"
  a = 5
  b = 6.3
  c(2) = 9.1
end subroutine foo