for example:
G is a TYPE variable having
T1 as an integer array,
T2 as an integer.
Want to see the values of them.
Try "print G%T1(1)"
--it says 'T1 not callable'
Try "print G%T2" or "print G%T1"
--it says 'can't read from process'
Is there any way I can get what I want?
thx