Files
Nim/doc
mark-summerfield 639f786e5d Update tut1.rst (#5510)
In general: s/have to/must/g - but you can't do this mechanically because sometimes the must has to go back a word (e.g., line 519).

This looks really odd to me:
if thisIsaLongCondition() and
    thisIsAnotherLongCondition(1,
       2, 3, 4):
  x = true

I would have expected:
if thisIsaLongCondition() and
    thisIsAnotherLongCondition(
       1, 2, 3, 4):
  x = true

If the second form is valid and good Nim style then I suggest using it rather than the original. However, if the original is the preferred style then this should be mentioned in the text since it is unusual.

Since Nim is case-sensitive I think it is bad to write wrongly cased names, e.g., ``Bool`` is a built-in type on line 589. This isn't true since Bool isn't anything, but bool is. So in these cases I'd always reword to avoid this problem (and that's what I've done -- and it also avoids "bool. Bool" which was ugly).
2017-03-12 17:44:33 +01:00
..
2017-03-07 10:01:07 +01:00
2016-10-24 12:20:51 +02:00
2016-10-24 12:20:51 +02:00
2014-08-28 22:36:14 +02:00
2015-09-10 10:50:29 +02:00
2017-01-16 23:04:53 +01:00
2016-02-28 23:22:47 +01:00
2016-11-05 00:22:51 -07:00
2017-02-06 22:43:07 +01:00
2017-02-01 21:15:47 +01:00
2015-07-10 03:51:00 -04:00
2016-10-24 12:20:51 +02:00
2016-09-17 15:53:12 +02:00
2015-09-20 18:16:51 -07:00
2015-11-07 09:33:55 +01:00
2017-03-12 17:44:33 +01:00
2017-01-07 09:18:45 +01:00

============================
Nim's documenation system
============================

This folder contains Nim's documentation. The documentation
is written in a format called *reStructuredText*, a markup language that reads
like ASCII and can be converted to HTML automatically!