diff options
author | Araq <rumpf_a@web.de> | 2012-07-12 08:17:22 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-12 08:17:22 +0200 |
commit | 94013a4cff5c19ecef2dbd7a7bdcb9811c5cce4d (patch) | |
tree | 3ae9d775ae6fc8ae29f4ddd2c64984c83b7a2bec /web/news.txt | |
parent | eee99ab2725562195e7324cf8ccc521a15a0611e (diff) | |
download | Nim-94013a4cff5c19ecef2dbd7a7bdcb9811c5cce4d.tar.gz |
';' as statement separator
Diffstat (limited to 'web/news.txt')
-rwxr-xr-x | web/news.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt index 9a46a9f04..0143d8f9a 100755 --- a/web/news.txt +++ b/web/news.txt @@ -124,12 +124,14 @@ Language Additions allowing for *sigil-like* operators. - Stand-alone ``finally`` and ``except`` blocks are now supported. - Macros and templates can now be invoked as pragmas. -- The apostrophe in type suffixes for numerical literal is now optional. +- The apostrophe in type suffixes for numerical literals is now optional. - Unsigned integer types have been added. - The integer promotion rules changed. - Nimrod now tracks proper intervals for ``range`` over some built-in operators. - In parameter lists a semicolon instead of a comma can be used to improve readability: ``proc divmod(a, b: int; resA, resB: var int)``. +- A semicolon can now be used to have multiple simple statements on a single + line: ``inc i; inc j``. 2012-02-09 Version 0.8.14 released |