diff options
author | Araq <rumpf_a@web.de> | 2014-04-07 01:59:17 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-04-07 01:59:17 +0200 |
commit | d20e4e0df4a384c4b3249eda8a487d998e9eee47 (patch) | |
tree | caa112f8eca53c47513f62587a95089b7e756219 | |
parent | 9840a6912d8ba4fd348f265fb8733c62ac578be4 (diff) | |
download | Nim-d20e4e0df4a384c4b3249eda8a487d998e9eee47.tar.gz |
updated news.txt
-rw-r--r-- | web/news.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt index 536cce534..4aaf10992 100644 --- a/web/news.txt +++ b/web/news.txt @@ -30,7 +30,7 @@ kqueue has not been implemented yet but will be in the future. The Asynchronous IO API provides both a callback interface and an interface which allows you to write code as you would if you were writing synchronous code. The latter is done through -the use of an ``await`` keyword which behaves similar to C#'s await. The +the use of an ``await`` macro which behaves similar to C#'s await. The following is a very simple chat server demonstrating Nimrod's new async capabilities. @@ -59,6 +59,11 @@ capabilities. serve() runForever() + +Note that this feature has been implemented with Nimrod's macro system and so +``await`` and ``async`` are no keywords. + + Library Additions ----------------- |