diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-05-03 14:19:40 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-05-03 14:19:40 -0400 |
| commit | 999cd7201314cae520ef3d003e247c88531ce1c4 (patch) | |
| tree | 2e325ff968cfa566b4411d96ae19a1f094d35b12 | |
| parent | af9a7e5fcd83f3fab09c309e405f580b06dc5179 (diff) | |
add allowed glyphs
| -rw-r--r-- | docs/syntax/index.md | 26 |
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 +``` |
