Advertisement
Guest User

Untitled

a guest
Jul 8th, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.18 KB | None | 0 0
  1. import threadpool
  2. import httpclient
  3.  
  4. proc download() =
  5.   discard(getContent("http://www.google.it"))
  6.  
  7. proc mainProc() =
  8.   spawn download()
  9.   sync()
  10.  
  11. if isMainModule:
  12.   mainProc()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement