okay, it doesn't seem to work for strings at all? i don't get it...
> test.nim(8, 7) Error: cannot prove: i <= len(s) + -1 (bounds check)
import threadpool
{.experimental: "parallel".}
var s = "abc"
for i in 0..s.high:
parallel:
s[i] = spawn chr(i)
Run
