diff options
author | Marvin Borner | 2023-11-16 14:06:33 +0100 |
---|---|---|
committer | Marvin Borner | 2023-11-30 18:11:46 +0100 |
commit | b572418b4a4f6ba647a9aaed0bd82bfe9189d9a8 (patch) | |
tree | e9b6752799880545d333677b6996fec34b887100 /docs/wiki_src | |
parent | 9d5575592fcafe77eeaf9971d3f3763d512ef86a (diff) |
Minor highlighting fixes
Diffstat (limited to 'docs/wiki_src')
-rw-r--r-- | docs/wiki_src/coding/recursion.md | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/wiki_src/coding/recursion.md b/docs/wiki_src/coding/recursion.md index 9625ef9..5a3ab85 100644 --- a/docs/wiki_src/coding/recursion.md +++ b/docs/wiki_src/coding/recursion.md @@ -14,13 +14,11 @@ recursion. Say we want a function `g`{.bruijn} to be able to call itself. With the `y`{.bruijn} combinator the following equivalence is obtained: -``` bruijn - (y g) -⤳ [[1 (0 0)] [1 (0 0)]] g -⤳ [g (0 0)] [g (0 0)] -⤳ g ([g (0 0)] [g (0 0)]) -≡ g (y g) -``` + (y g) + ⤳ [[1 (0 0)] [1 (0 0)]] g + ⤳ [g (0 0)] [g (0 0)] + ⤳ g ([g (0 0)] [g (0 0)]) + ≡ g (y g) With this equivalence, `g`{.bruijn} is able to call itself since its outer argument is the initial function again. |