Minor problem! It seems SLEEP doesn't process fractions of second properly. Try this rexx:
DO i=1 TO 15
x=TIME('R')
wait=i/10
SLEEP(wait)
elp=TIME('E')
SAY 'should wait: 'wait 'waited: 'elp
END
you find that fractions of a second are not working properly.
As I said, low priority!
Peter |