diff options
author | narimiran <narimiran@disroot.org> | 2021-01-20 09:15:20 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2021-01-20 09:15:20 +0100 |
commit | 2bedb0fe2c38424a53ec7376c05db09090af9f93 (patch) | |
tree | 644ae1c674fab3b369c1b74cc3923f0b7186e3c4 | |
parent | fbdf3f2cebc4d492b458cecfad1f19fdd1375f5a (diff) | |
download | Nim-2bedb0fe2c38424a53ec7376c05db09090af9f93.tar.gz |
add link to Nim Basics in tut1.rst [ci skip]
-rw-r--r-- | doc/tut1.rst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/tut1.rst b/doc/tut1.rst index 397782330..9d6ba8b4d 100644 --- a/doc/tut1.rst +++ b/doc/tut1.rst @@ -17,9 +17,14 @@ Introduction This document is a tutorial for the programming language *Nim*. + This tutorial assumes that you are familiar with basic programming concepts -like variables, types, or statements but is kept very basic. The `manual -<manual.html>`_ contains many more examples of the advanced language features. +like variables, types, or statements. +If you would like to have a gentle introduction of those concepts, we recommend +`Nim Basics tutorial <https://narimiran.github.io/nim-basics/>`_. +On the other hand, the `manual <manual.html>`_ contains many more examples of +the advanced language features. + All code examples in this tutorial, as well as the ones found in the rest of Nim's documentation, follow the `Nim style guide <nep1.html>`_. |