aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/wiki_src/coding/recursion.md
diff options
context:
space:
mode:
authorMarvin Borner2024-03-10 14:18:17 +0100
committerMarvin Borner2024-03-10 14:18:17 +0100
commite4dc5918cdfc231bee29ca5808e37ee23f33712e (patch)
treeb73f9384964f96fe92ad6a08d393ba73b942a73c /docs/wiki_src/coding/recursion.md
parent6ae44d09faa0ae353c0818705503cad42127d102 (diff)
Samples and std additions
Diffstat (limited to 'docs/wiki_src/coding/recursion.md')
-rw-r--r--docs/wiki_src/coding/recursion.md4
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