summaryrefslogtreecommitdiff
path: root/docs/language/index.md
diff options
context:
space:
mode:
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