docs: fix cond example for real this time.
This commit is contained in:
parent
8453705bc4
commit
6d7cd33d04
1 changed files with 2 additions and 2 deletions
4
lisp.md
4
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**: checks conditions and evaluates the corresponding expression.
|
||||||
```
|
```
|
||||||
(cond
|
(cond
|
||||||
(> 1 2) t
|
((> 1 2) t)
|
||||||
t f)
|
(t f))
|
||||||
```
|
```
|
||||||
|
|
||||||
**if**: a conditional. `(if t 1 2)`
|
**if**: a conditional. `(if t 1 2)`
|
||||||
|
|
Loading…
Reference in a new issue