Hi,

I'm currently trying getting the following code to work:
    
    
    import httpclient
    import threadpool
    
    proc check() =
      discard newHttpClient()
    
    spawn check()
    
    Run

it compiles successfully but crashes as soon as it reaches the newHttpClient() 
line. I already tried using different GC's, current command: nim c -r 
--threads:on -d:ssl --mm:arc test.nim 

Reply via email to