summaryrefslogtreecommitdiff
path: root/docs/language/index.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-28 13:41:22 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-28 13:41:22 -0400
commitcf9285b1dbdf687630076149413f16e5d4af82e8 (patch)
tree7c10f7587cab9cd40c0d1b9e019cd4a2135e7193 /docs/language/index.md
parent254059e2ea2df0cd63cf75d836ac9ebe00a28302 (diff)
type body object definitions and garbage collection algoHEADmain
Diffstat (limited to 'docs/language/index.md')
-rw-r--r--docs/language/index.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/language/index.md b/docs/language/index.md
index 2a8ff49..4fdccb6 100644
--- a/docs/language/index.md
+++ b/docs/language/index.md
@@ -58,6 +58,10 @@ Underscores `_` can separate digits in a number
'A'
```
+### String literals have a `2 ^ 16 - 2` token byte limit
+
+### Char literals have a `6` token byte limit
+
Any UTF-8 glyph is allowed between `""` or `''`
```text
@@ -72,13 +76,13 @@ Start with a lowercase letter
Variables starting with `_` are treated as unused
-### Variables names have a 90 character limit
+### Variables names have a 60 character limit
## Type Names
Start with an uppercase letter created with either \`alias or \`unique
-### Type names have a 90 character limit
+### Type names have a 60 character limit
## Type Qualifiers
@@ -113,7 +117,7 @@ Start with a `.`
.symbol
```
-### Symbols have a 90 character limit
+### Symbols have a 60 character limit
# Lists