From 6d7cd33d04a402e72d584b52ea470cf0bcf75f96 Mon Sep 17 00:00:00 2001 From: redxef Date: Wed, 18 Dec 2024 00:34:11 +0100 Subject: [PATCH] docs: fix cond example for real this time. --- lisp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp.md b/lisp.md index a8f9074..cfbf524 100644 --- a/lisp.md +++ b/lisp.md @@ -55,8 +55,8 @@ argument, a list of string describing the types for the generic method. **cond**: checks conditions and evaluates the corresponding expression. ``` (cond - (> 1 2) t - t f) + ((> 1 2) t) + (t f)) ``` **if**: a conditional. `(if t 1 2)`