Fix lisp doc

This commit is contained in:
Vincent Ollivier 2023-07-03 09:28:37 +02:00
parent 111933fafc
commit 5003296c30
2 changed files with 10 additions and 10 deletions

View File

@ -12,11 +12,11 @@ MOROS Lisp is a Lisp-1 dialect inspired by Scheme, Clojure, and Ruby!
- Numbers: `float`, `int`, `bigint`
### Built-in Operators
- `quote` (with the `'` syntax)
- `quasiquote` (with the `` ` ``)
- `unquote` (with the `,` syntax)
- `unquote-splice` (with the `,@` syntax)
- `splice` (with the `@` syntax)
- `quote` (abbreviated with `'`)
- `quasiquote` (abbreviated with `` ` ``)
- `unquote` (abbreviated with `,`)
- `unquote-splice` (abbreviated with `,@`)
- `splice` (abbreviated with `@`)
- `atom?`
- `equal?` (aliased to `eq?`)
- `head`

View File

@ -25,11 +25,11 @@ of the Shell.</p>
<h3>Built-in Operators</h3>
<ul>
<li><code>quote</code> (with the <code>&#39;</code> syntax)</li>
<li><code>quasiquote</code> (with the <code>`</code>)</li>
<li><code>unquote</code> (with the <code>,</code> syntax)</li>
<li><code>unquote-splice</code> (with the <code>,@</code> syntax)</li>
<li><code>splice</code> (with the <code>@</code> syntax)</li>
<li><code>quote</code> (abbreviated with <code>&#39;</code>)</li>
<li><code>quasiquote</code> (abbreviated with <code>`</code>)</li>
<li><code>unquote</code> (abbreviated with <code>,</code>)</li>
<li><code>unquote-splice</code> (abbreviated with <code>,@</code>)</li>
<li><code>splice</code> (abbreviated with <code>@</code>)</li>
<li><code>atom?</code></li>
<li><code>equal?</code> (aliased to <code>eq?</code>)</li>
<li><code>head</code></li>