diff options
author | Araq <rumpf_a@web.de> | 2011-04-11 21:42:28 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-04-11 21:42:28 +0200 |
commit | 3d696c3da53e5c41d839d8265fbc94f1c64980bb (patch) | |
tree | 4e9160d62abb1d847eb60730038ab74d5bbff995 /web/news.txt | |
parent | fc6cc79273f75983e57c43c2a19016e5881ee2b7 (diff) | |
download | Nim-3d696c3da53e5c41d839d8265fbc94f1c64980bb.tar.gz |
p[] instead of p^
Diffstat (limited to 'web/news.txt')
-rwxr-xr-x | web/news.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/news.txt b/web/news.txt index c28eef94e..3a35a9f21 100755 --- a/web/news.txt +++ b/web/news.txt @@ -37,6 +37,10 @@ Changes affecting backwards compatibility if both ``$#`` and ``$i`` are involved. - The ``pegs`` and ``re`` modules distinguish between ``replace`` and ``replacef`` operations. +- 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[]`` to dereference a pointer. + Additions --------- |