Topic: order of array elements displayed in debug window
The ordering of the array elements shown in the debug window could be improved. The elements are shown sorted by subscript, but treating the subscript is a multi-character string rather than as an integer. As an example, for the array declared
real, dimension(20)::t
in the debug window, the elements of t would be displayed in the order
1
10
11
12
13
14
15
16
17
18
19
2
20
3
4
5
....
Is it possible instead to sort the elements by treating the subscripts as integers?