Hello,
I'd like to create a do loop where the index variable takes on the values of certain strings, or certain numbers, such as the following (which of course doesn't actually work):
--------------------------------
do i="aaa" "bbb" "ccc"
disp i
end do i
-------------------------------
or like this,
--------------------------------
do i = 2,18,23
disp i
end do i
----------------------------------
Thanks in advance,
CP