blob: def65e6d2b2886de8056cfceccab0e760d4fdde8 [file] [log] [blame]
subroutine prob
integer, parameter :: SIZE = 5
real :: matrix(SIZE, SIZE)
matrix(:, :) = 0.0 !<<<<<START !<<<<<END
print *, matrix
end subroutine
program main; call prob; call flush; stop; end program