Added some missing specifications

This commit is contained in:
Kyler Olsen 2025-11-02 00:35:01 -06:00
parent 4024aafd0e
commit b08a2da037
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@ identified as necessary for a complete language specification.
- Constants
- Arrays of structs
- Arrays of non-default types
- Identifiers can be any ascii (or possibly unicode) string without whitespace,
that doesn't start with a digit (`0-9`), `.`, or `:`, and doesn't include `::`
- Integers and floats are allowed to use `_` as deliminator, they are ignored
after lexing, they are just for the programer
### Arrays of non-default types and structs