      program program9
C
C  this program illustrates dimensioning of arrays
C  
C  1/30/2005 CWJ SDSU
C
C  note: the "implicit none" statement is always recommended
C
      implicit none

      real vec1(100)
      integer vec2(-10:10)
      real matrix(20,30)
      integer imat(10,11,12,13)

      end

