summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Cerqueira <dan.git@lispclub.com>2026-02-25 15:13:52 +0000
committerDaniel Cerqueira <dan.git@lispclub.com>2026-02-25 15:13:52 +0000
commit95dcacea5a1eabfee54c3edbe11b844bf1e5a2ec (patch)
tree27af3d2c21cb6db78d19624b9898628b117aa308 /README.md
parent542ea993cbfdf3e4eb5f234817a7fc7a631e8472 (diff)
replace ap function name to algo
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index d60153b..82e1f02 100644
--- a/README.md
+++ b/README.md
@@ -155,13 +155,13 @@ each of their elements satisfy the `dif` predicate, otherwise `f`:
(space t) ; f
(space '(a b)) ; f
-`(ap x)` returns `t` if `x` is "an existing thing" (not an empty list `()`),
+`(algo x)` returns `t` if `x` is "an existing thing" (not an empty list `()`),
otherwise `f`:
- (ap ()) ; f
- (ap +1) ; t
- (ap t) ; t
- (ap '(a b)) ; t
+ (algo ()) ; f
+ (algo +1) ; t
+ (algo t) ; t
+ (algo '(a b)) ; t
`(atom x)` returns `t` if `x` is an atom (and not an empty list `()`), otherwise
`f`: