1
0

Add some docs

This commit is contained in:
Jeff 2024-11-29 19:13:53 -05:00
parent 6a43225b61
commit b976a37862

View File

@ -3,6 +3,23 @@
Dust is a high-level interpreted programming language with static types that focuses on ease of use, Dust is a high-level interpreted programming language with static types that focuses on ease of use,
performance and correctness. performance and correctness.
## Features
- Values
- [x] no `null` or `undefined`
- [x] boolean
- [x] byte
- [x] character
- [x] integer
- [x] float
- [x] function
- [x] list
- [x] range
- [x] string
- Types
- [x] basic types: `bool`, `byte`, `char`, `int`, `float`, functions, lists, ranges, `str`
- [O] generalized types: `num`, `any`
## Implementation ## Implementation
Dust is implemented in Rust and is divided into several parts, primarily the lexer, compiler, and Dust is implemented in Rust and is divided into several parts, primarily the lexer, compiler, and