Files
Nim/lib
Tristram Oaten 42a64245f8 Fix broken async httpclient example
As the async httpclient is almost certainly the first async example beginners will want to try, we OWE it to them to give them a real example.

Example repeated here for clarity:

```nim
import asyncdispatch, httpclient

proc asyncProc(): Future[string] {.async.} =
  var client = newAsyncHttpClient()
  return await client.getContent("http://example.com")

echo waitFor asyncProc()
```

This is my first Nim contribution, please let me know if the code is right. (it runs on my machine, but may not be the best example)
2020-04-21 00:00:30 +01:00
..
2017-02-20 17:24:19 +02:00
2019-07-14 16:08:15 +02:00
2020-04-03 09:38:05 +02:00
2020-04-16 08:59:54 +02:00
2020-03-29 14:39:58 +02:00
2020-04-21 00:00:30 +01:00
2020-04-20 23:44:29 +02:00
2013-03-16 23:53:07 +01:00
2019-12-09 06:58:06 +01:00
2014-08-28 09:59:26 +02:00