Hello, I observe an unexpected result from a call to winio@ inside a do loop.
Here the loop: do nr = 1,2 ians = winio@ ('%2nl %`2rd %18rs &', nr, 'ABC') enddo The result shows two lines, each beginning with '3' instead of '1' and '2'
Here the two lines which produce the desired result:
nr=1; ians = winio@ ('%2nl %2rd %18rs &', nr, 'ABC') nr=2; ians = winio@ ('%2nl %2rd %18rs &', nr, 'ABC')
Why that ?
Thanks in advance Wolf