really simple question.
say I have
real, dimension(0:100) :: realResults
and I want to iterate over realResults, ultimately to create json of the array of the form
[[x1,y1], [x2,y2], [x3, y3], ... ]
I'm pretty sure I want to use "do" but I'm not sure how
thanks