diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2019-04-23 10:36:16 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-04-23 11:36:16 +0200 |
commit | 2cdff617fd77c0e8186710a03dbd3c6d646f667f (patch) | |
tree | 43ac32c1a5696b73c1c1eff116d88889c7243adf /doc/manual.rst | |
parent | 8d206b20d4bd004a18f4ff80d20143c833223a5c (diff) | |
download | Nim-2cdff617fd77c0e8186710a03dbd3c6d646f667f.tar.gz |
Update docs around docSeeSrcUrl #6071 (#11074)
Flag docSeeSrcUrl as deprecated. Add quick start paragraph. Add links from the language manual.
Diffstat (limited to 'doc/manual.rst')
-rw-r--r-- | doc/manual.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index d2b35d36d..d4d2aae91 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -22,7 +22,10 @@ precise wording. This manual is constantly evolving into a proper specification. **Note**: The experimental features of Nim are covered `here <manual_experimental.html>`_. -This document describes the lexis, the syntax, and the semantics of Nim. +This document describes the lexis, the syntax, and the semantics of the Nim language. + +To learn how to compile Nim programs and generate documentation see +`Compiler User Guide <nimc.html>`_ and `DocGen Tools Guide <docgen.html>`_. The language constructs are explained using an extended BNF, in which ``(a)*`` means 0 or more ``a``'s, ``a+`` means 1 or more ``a``'s, and ``(a)?`` means an |