Skip to content

Commit

Permalink
Update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
vinc committed Nov 11, 2023
1 parent 1fdd4db commit 88d78f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/lisp.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ MOROS Lisp is a Lisp-1 dialect inspired by Scheme, Clojure, and Ruby!
- Number: `float`, `int`, `bigint`

### Literals
- String: `"this is a string"`
- Number: `255`, `0xFF`, `2.5`, `-25`
- String: `"Hello, World!"`
- Number: `2.5`, `-25`, `255`, `0xFF`, `0xDEAD_CODE`

### Built-in Operators
- `quote` (abbreviated with `'`)
Expand Down
6 changes: 3 additions & 3 deletions www/lisp.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ <h3>Types</h3>

<ul>
<li>Basics: <code>bool</code>, <code>list</code>, <code>symbol</code>, <code>string</code></li>
<li>Numbers: <code>float</code>, <code>int</code>, <code>bigint</code></li>
<li>Number: <code>float</code>, <code>int</code>, <code>bigint</code></li>
</ul>

<h3>Literals</h3>

<ul>
<li>String: <code>&quot;this is a string&quot;</code></li>
<li>Numbers: <code>255</code>, <code>0xFF</code>, <code>2.5</code></li>
<li>String: <code>&quot;Hello, World!&quot;</code></li>
<li>Number: <code>2.5</code>, <code>-25</code>, <code>255</code>, <code>0xFF</code>, <code>0xDEAD_CODE</code></li>
</ul>

<h3>Built-in Operators</h3>
Expand Down

0 comments on commit 88d78f7

Please sign in to comment.