From 95dcacea5a1eabfee54c3edbe11b844bf1e5a2ec Mon Sep 17 00:00:00 2001 From: Daniel Cerqueira Date: Wed, 25 Feb 2026 15:13:52 +0000 Subject: replace ap function name to algo --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'README.md') 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`: -- cgit