# Syntax --- ##### 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 ``` // This is a comment until the end of the line /* Comment block */ ``` ## Operators Represented as an symbol or a keyword starting with \` ``` 1 + 2 1 `add 2 ```