diff options
Diffstat (limited to 'docs/wiki_src/coding/recursion.md')
-rw-r--r-- | docs/wiki_src/coding/recursion.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/wiki_src/coding/recursion.md b/docs/wiki_src/coding/recursion.md index 5a3ab85..89e71c8 100644 --- a/docs/wiki_src/coding/recursion.md +++ b/docs/wiki_src/coding/recursion.md @@ -69,9 +69,9 @@ g [[[=?0 true (1 --0)]]] # the even? recursive call will be the first argument (2) h [[[=?0 false (2 --0)]]] -even? head (y* g h) ⧗ Number → Boolean +even? head (y* (g : {}h)) ⧗ Number → Boolean -odd? tail (y* g h) ⧗ Number → Boolean +odd? tail (y* (g : {}h)) ⧗ Number → Boolean ``` Read more about this in the blog post [Variadic fixed-point |