neither with a seq?

> test.nim(8, 7) Error: (i)..(i) not disjoint from (i)..(i)
    
    
    import threadpool
    {.experimental: "parallel".}
    
    var s = newSeq[char](3)
    
    parallel:
      for i in 0..s.high:
        s[i] = spawn chr(i)
    
    
    Run

I must be completely missing the point... :(

Reply via email to