That works yes, unfortunately...
the flow I need is this
enter the i for loop
print i
loop through the j for loop
print j
...the output generated would be
i=0
j=0
j=1
...
j=9
i=1
j=0
j=1
...
j=9
i=2...and so on until the i loop is completed.
I have been constructing some LSL using two for loops and it looks like this is not at all possible with the way LSL is executed. Has anyone been able to do this? Thanks in advance