summaryrefslogtreecommitdiff
path: root/numpy/f2py/src/test/foo.f
blob: 5354ceaf986bc423566bba2aee7bf2724e4d1408 (plain)
1
2
3
4
5
6
7
8
9
10
11
      subroutine bar()
      integer a
      real*8 b,c(3)
      common /foodata/ a,b,c
      a = 4
      b = 6.7
      c(2) = 3.0
      write(*,*) "bar:a=",a
      write(*,*) "bar:b=",b
      write(*,*) "bar:c=",c
      end