mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
Merge pull request #1 from tirkarthi/tirkarthi-patch-1
Wrap the example in a code block
This commit is contained in:
23
doc/tut1.txt
23
doc/tut1.txt
@@ -758,19 +758,18 @@ However, this cannot be done for mutually recursive procedures:
|
||||
# forward declaration:
|
||||
proc even(n: int): bool
|
||||
|
||||
proc even(n: int): bool
|
||||
.. code-block:: nim
|
||||
proc odd(n: int): bool =
|
||||
assert(n >= 0) # makes sure we don't run into negative recursion
|
||||
if n == 0: false
|
||||
else:
|
||||
n == 1 or even(n-1)
|
||||
|
||||
proc odd(n: int): bool =
|
||||
assert(n >= 0) # makes sure we don't run into negative recursion
|
||||
if n == 0: false
|
||||
else:
|
||||
n == 1 or even(n-1)
|
||||
|
||||
proc even(n: int): bool =
|
||||
assert(n >= 0) # makes sure we don't run into negative recursion
|
||||
if n == 1: false
|
||||
else:
|
||||
n == 0 or odd(n-1)
|
||||
proc even(n: int): bool =
|
||||
assert(n >= 0) # makes sure we don't run into negative recursion
|
||||
if n == 1: false
|
||||
else:
|
||||
n == 0 or odd(n-1)
|
||||
|
||||
Here ``odd`` depends on ``even`` and vice versa. Thus ``even`` needs to be
|
||||
introduced to the compiler before it is completely defined. The syntax for
|
||||
|
||||
Reference in New Issue
Block a user