summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-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
+```