summaryrefslogtreecommitdiff
path: root/examples/speech/pt-random.lali
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 /examples/speech/pt-random.lali
parent542ea993cbfdf3e4eb5f234817a7fc7a631e8472 (diff)
replace ap function name to algo
Diffstat (limited to 'examples/speech/pt-random.lali')
-rwxr-xr-xexamples/speech/pt-random.lali4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/speech/pt-random.lali b/examples/speech/pt-random.lali
index 6ff31fb..1b3407c 100755
--- a/examples/speech/pt-random.lali
+++ b/examples/speech/pt-random.lali
@@ -25,13 +25,13 @@
(defun assoc (el lst)
(fill
((dif el (car (car lst))) (car lst))
- ((ap lst) '(f f f))
+ ((algo lst) '(f f f))
(f (assoc el (cdr lst)))))
(defun without (el lst)
(fill
((dif el (car lst)) f)
- ((ap (car lst)) t)
+ ((algo (car lst)) t)
(f (without el (cdr lst)))))
;; vv begin of training options vv