diff options
author | cooldome <cdome@bk.ru> | 2018-01-09 14:25:22 +0000 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-01-09 15:25:22 +0100 |
commit | 2c9e56a783e36b0f9db3f2f73d76c910f36a9ffd (patch) | |
tree | 3c0ed82169d0cb36a1f0e6c63bc4ce43718471bf /changelog.md | |
parent | aff787db69ed67f54d72e9caa43e556a9d0e2674 (diff) | |
download | Nim-2c9e56a783e36b0f9db3f2f73d76c910f36a9ffd.tar.gz |
Implement custom annotations (#6987)
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 21ab2b87a..993923e5c 100644 --- a/changelog.md +++ b/changelog.md @@ -190,3 +190,6 @@ let - Added support for casting between integers of same bitsize in VM (compile time and nimscript). This allow to among other things to reinterpret signed integers as unsigned. +- Pragmas now support call syntax, for example: ``{.exportc"myname".}`` and ``{.exportc("myname").}`` +- Custom pragmas are now supported using pragma ``pragma``, please see language manual for details + |