diff options
author | Zahary Karadjov <zahary@gmail.com> | 2018-05-04 17:47:37 +0300 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-05-07 09:37:49 +0200 |
commit | cf13c5fba48e757531b3f9cb0e3aeae7710c849c (patch) | |
tree | 37c2ab529a4dfe808f6fd0118a5f7a51d51ad4ee /doc | |
parent | 72976139009b9ae74669dc2443474f091c99f2e4 (diff) | |
download | Nim-cf13c5fba48e757531b3f9cb0e3aeae7710c849c.tar.gz |
implement the export/except statement
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index 1a4ed19b7..44e2ee5b5 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -6298,6 +6298,9 @@ modules don't need to import a module's dependencies: var x: MyObject echo $x +When the exported symbol is another module, all of its definitions will +be forwarded. You can use an ``except`` list to exclude some of the symbols. + Note on paths ----------- In module related statements, if any part of the module name / |