ok, so i feel like i'm missing something very obvious here... why isn't numToWrite updating in this code?
out = 1 numToWrite = 10000 if numToWrite < out numToWrite = copy(out) end after that code executes numToWrite is still 10000. Both types are Int64, i've tried it with and without the copy()... when i execute numToWrite < out a 1 is returned as opposed to true. Thank you for your help! Jason