diff options
author | Alexander <achasch@gmail.com> | 2015-06-16 16:00:33 +0300 |
---|---|---|
committer | Alexander <achasch@gmail.com> | 2015-06-16 16:00:33 +0300 |
commit | 5e2d7e81a23750661dca883adaa97745234879c4 (patch) | |
tree | 744579e324cde27170422ba7ce38de08f581ef60 /doc | |
parent | abe1051374c2213ab28a8e7814ef3cc11d044e77 (diff) | |
download | Nim-5e2d7e81a23750661dca883adaa97745234879c4.tar.gz |
Update tut1.txt
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tut1.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.txt b/doc/tut1.txt index 6f10e7cbb..084de453a 100644 --- a/doc/tut1.txt +++ b/doc/tut1.txt @@ -764,7 +764,7 @@ However, this cannot be done for mutually recursive procedures: proc even(n: int): bool = if n == 1: - true + false n == 0 or odd(n-1) Here ``odd`` depends on ``even`` and vice versa. Thus ``even`` needs to be |