diff options
author | Araq <rumpf_a@web.de> | 2013-05-19 23:41:12 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-05-19 23:41:12 +0200 |
commit | a23d418d78f7c35b2e7aed23ed6beb60e2542b83 (patch) | |
tree | 41f3a1e14b9b38bf4eb0ebae0cf90156c96b4302 /web | |
parent | 5edf02a7ab7f46c5841104538a313fad5dbba5f9 (diff) | |
download | Nim-a23d418d78f7c35b2e7aed23ed6beb60e2542b83.tar.gz |
'from' statement documented
Diffstat (limited to 'web')
-rw-r--r-- | web/news.txt | 9 | ||||
-rw-r--r-- | web/ticker.txt | 5 |
2 files changed, 12 insertions, 2 deletions
diff --git a/web/news.txt b/web/news.txt index f66c06667..906fb1108 100644 --- a/web/news.txt +++ b/web/news.txt @@ -11,7 +11,8 @@ the logo) as well as the HTML and CSS code for his template, and Dominik Picheta for integrating Philip's design with the ``nimweb`` utility. We're sure you will agree that Philip's design is beautiful. -2013-XX-XX Version 0.9.2 released + +2013-05-20 Version 0.9.2 released ================================= Version 0.9.2 has been released! Get it `here <download.html>`_. @@ -96,6 +97,9 @@ Language Additions - Objects can be initialized via an *object constructor expression*. - There is a new syntactic construct ``(;)`` unifying expressions and statements. +- You can now use ``from module import nil`` if you want to import the module + but want to enforce fully qualified access to every symbol in ``module``. + Notes for the future -------------------- @@ -106,6 +110,7 @@ Notes for the future functions. All the high-level features of the current ``sockets`` module will be moved to a ``network`` module. + 2012-09-23 Version 0.9.0 released ================================= @@ -493,7 +498,7 @@ Changes affecting backwards compatibility - The pointer dereference operation ``p^`` is deprecated and might become ``^p`` in later versions or be dropped entirely since it is rarely used. Use the new notation ``p[]`` in the rare cases where you need to - dereference a pointer explicitely. + dereference a pointer explicitly. - ``system.readFile`` does not return ``nil`` anymore but raises an ``EIO`` exception instead. - Unsound co-/contravariance for procvars has been removed. diff --git a/web/ticker.txt b/web/ticker.txt index e0965238f..b47c5642a 100644 --- a/web/ticker.txt +++ b/web/ticker.txt @@ -1,3 +1,8 @@ +<a class="news" href="news.html#Z2013-05-20-version-0-9-2-released"> + <h3>May 20, 2013</h3> + <p>Nimrod version 0.9.2 has been released!</p> +</a> + <a class="news" href="news.html#Z2012-09-23-version-0-9-0-released"> <h3>Sep 23, 2012</h3> <p>Nimrod version 0.9.0 has been released!</p> |