diff options
author | Araq <rumpf_a@web.de> | 2013-03-09 20:43:56 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-03-09 20:43:56 +0100 |
commit | a64d4dc35c5b93c85a512261b78a89cdf1282e8d (patch) | |
tree | 1d8906c93a3fa4f32a0ec63fb6d42f005fb2671b /web/news.txt | |
parent | 2b4922aea0350c3a225619e7e10b74de95bfc2b7 (diff) | |
download | Nim-a64d4dc35c5b93c85a512261b78a89cdf1282e8d.tar.gz |
documented object constrs; endb works again
Diffstat (limited to 'web/news.txt')
-rwxr-xr-x | web/news.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/web/news.txt b/web/news.txt index a0728e812..7bd0e4f4f 100755 --- a/web/news.txt +++ b/web/news.txt @@ -15,17 +15,17 @@ Bugfixes with ``GC_disableMarkAndSweep`` and run it explicitly at an appropriate time or not at all. There is also a new GC you can activate with ``--gc:markAndSweep`` which does not have this problem but is slower in - general. + general and has no realtime guarantees. Library Additions ----------------- +- There is a new experimental mark&sweep GC which can be faster (or much + slower) than the default GC. Enable with ``--gc:markAndSweep``. - Added ``system.onRaise`` to support a condition system. - Added ``macros.quote`` for AST quasi-quoting. - Added ``system.unsafeNew`` to support hacky variable length objects. -- There is a new experimental mark&sweep GC which can be faster (or much - slower) than the default GC. Enable with ``--gc:markAndSweep``. - ``system.fields`` and ``system.fieldPairs`` support ``object`` too; they used to only support tuples. @@ -68,6 +68,7 @@ Language Additions dependencies explicitly. - Overloading based on ASTs has been implemented. - Generics are now supported for multi methods. +- Objects can be initialized via an *object constructor expression*. 2012-09-23 Version 0.9.0 released |