From 999cd7201314cae520ef3d003e247c88531ce1c4 Mon Sep 17 00:00:00 2001 From: nodist Date: Sun, 3 May 2026 14:19:40 -0400 Subject: add allowed glyphs --- docs/syntax/index.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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 +``` -- cgit v1.2.3