summaryrefslogtreecommitdiff
path: root/docs/syntax/index.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-05-03 14:19:40 -0400
committernodist <kevin.comas.git@gmail.com>2026-05-03 14:19:40 -0400
commit999cd7201314cae520ef3d003e247c88531ce1c4 (patch)
tree2e325ff968cfa566b4411d96ae19a1f094d35b12 /docs/syntax/index.md
parentaf9a7e5fcd83f3fab09c309e405f580b06dc5179 (diff)
add allowed glyphs
Diffstat (limited to 'docs/syntax/index.md')
-rw-r--r--docs/syntax/index.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/syntax/index.md b/docs/syntax/index.md
index 4e9e898..4343a2f 100644
--- a/docs/syntax/index.md
+++ b/docs/syntax/index.md
@@ -2,6 +2,23 @@
---
+##### Code is encoded as UTF-8, allowed glyphs are:
+
+```text
+abcdefghijklmnopqrstuvwxyz
+ABCDEFGHIJKLMNOPQRSTUVWXYZ
+0123456789
+`~!@#$%^&*()-_=+{}[]\|;:'"<>,.?/
+\s\t\n
+```
+
+##### Any UTF-8 glyph is allowed between `""`
+
+```text
+Ω - Invalid code
+"Ω" - Valid code
+```
+
## Comments
```
@@ -9,3 +26,12 @@
/* Comment block */
```
+
+## Operators
+
+Represented as an symbol or a keyword starting with \`
+
+```
+1 + 2
+1 `add 2
+```