diff options
author | Araq <rumpf_a@web.de> | 2012-10-03 20:49:43 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-10-03 20:49:43 +0200 |
commit | 9fbee85cc9dd95c1f99e5b55a3d382196eabb7fc (patch) | |
tree | 5b38a0d41d876a4c35d979d09a4d3ba8ecd30722 /doc | |
parent | b28fcdfa93ccf132b878e7dcd26e36d48f107212 (diff) | |
download | Nim-9fbee85cc9dd95c1f99e5b55a3d382196eabb7fc.tar.gz |
first steps for compiler as a service
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/nimrodc.txt | 1 | ||||
-rwxr-xr-x | doc/tut1.txt | 10 | ||||
-rwxr-xr-x | doc/tut2.txt | 4 |
3 files changed, 9 insertions, 6 deletions
diff --git a/doc/nimrodc.txt b/doc/nimrodc.txt index 7b969c3bb..117d226a6 100755 --- a/doc/nimrodc.txt +++ b/doc/nimrodc.txt @@ -159,6 +159,7 @@ Define Effect systems. See the documentation of the `gc <gc.html>`_ for further information. ``nodejs`` The EcmaScript target is actually ``node.js``. +``ssl`` Enables OpenSSL support for the sockets module. ================== ========================================================= diff --git a/doc/tut1.txt b/doc/tut1.txt index 833d364df..c6e4edb82 100755 --- a/doc/tut1.txt +++ b/doc/tut1.txt @@ -16,10 +16,10 @@ Introduction </p></blockquote> -This document is a tutorial for the programming language *Nimrod*. After this -tutorial you will have a decent knowledge of Nimrod. This tutorial assumes -that you are familiar with basic programming concepts like variables, types -or statements. +This document is a tutorial for the programming language *Nimrod*. +This tutorial assumes that you are familiar with basic programming concepts +like variables, types or statements but is kept very basic. The manual +contains many more examples of the advanced language features. @@ -593,7 +593,7 @@ caller, a ``var`` parameter can be used: In the example, ``res`` and ``remainder`` are `var parameters`. Var parameters can be modified by the procedure and the changes are -visible to the caller. Note that the above example would better make usage of +visible to the caller. Note that the above example would better make use of a tuple as a return value instead of using var parameters. diff --git a/doc/tut2.txt b/doc/tut2.txt index 3882296be..149d444f0 100755 --- a/doc/tut2.txt +++ b/doc/tut2.txt @@ -16,7 +16,9 @@ Introduction This document is a tutorial for the advanced constructs of the *Nimrod* -programming language. +programming language. **Note that this document is somewhat obsolete as +the `manual <manual.html>`_ contains many more examples of the advanced +language features.** Pragmas |