diff options
Diffstat (limited to 'doc/tut1.txt')
-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 |