Index:
TYPE | TYPE Statement (Derived Type)
In the following example, a and b are both variable arrays of derived type pair:
TYPE (pair) INTEGER i, j END TYPE TYPE (pair), DIMENSION (2, 2) :: a, b(3)
Is that correct? If so, explain further.
Jim Dempsey