Update SPECIFICATION.MD

This commit is contained in:
zongor 2024-07-20 16:10:03 -04:00
parent 145407da41
commit cf20daa6a1
1 changed files with 3 additions and 3 deletions

View File

@ -82,8 +82,10 @@ strings are always utf8, other formats will need to be done manually
## logical ## logical
### true
- `true` bool - `true` bool
### false
- `false` bool - `false` bool
### panic ### panic
@ -98,9 +100,7 @@ calling panic on a variable that has an error will halt execution of the node th
A list will act similar to a list in LISP, it is esentially a block of memory that has an internal "length" and other operations. A list will act similar to a list in LISP, it is esentially a block of memory that has an internal "length" and other operations.
syntax ( «item» «item2» … `)`
(item1 item2 …)
### Basic operators ### Basic operators