3 common /NONF03COM
/ r
, s
9 subroutine hello(myArray
)
10 integer, dimension(:) :: myArray
15 end module nonF03ComBlock
19 integer, dimension(1:10) :: myArray
23 ! these are set in the call to hello() above
24 ! r and s are reals (default size) in com block, set to
25 ! 1.0 and 2.0, respectively, in hello()
32 end program testComBlock