1
0

Clean up README

This commit is contained in:
Jeff 2024-11-30 01:27:53 -05:00
parent 98e9a5ed21
commit dbf7dc53c2

View File

@ -32,15 +32,16 @@ Dust is still in development. This list may change as the language evolves.
- [ ] Compile to and run from intermediate formats - [ ] Compile to and run from intermediate formats
- [ ] JSON - [ ] JSON
- [ ] Postcard - [ ] Postcard
- Values - Basic Values
- [X] No `null` or `undefined` values - [X] No `null` or `undefined` values
- [X] Booleans - [X] Booleans
- [X] Bytes (unsigned 8-bit) - [X] Bytes (unsigned 8-bit)
- [X] Characters (Unicode scalar value) - [X] Characters (Unicode scalar value)
- [X] Floats (64-bit) - [X] Floats (64-bit)
- [X] Functions - [X] Functions
- [X] Integer (signed 64-bit) - [X] Integers (signed 64-bit)
- [ ] Ranges - [ ] Ranges
- Composite Values
- [X] Strings (UTF-8) - [X] Strings (UTF-8)
- [X] Concrete lists - [X] Concrete lists
- [X] Abstract lists (optimization) - [X] Abstract lists (optimization)
@ -50,7 +51,7 @@ Dust is still in development. This list may change as the language evolves.
- [ ] Structs - [ ] Structs
- [ ] Enums - [ ] Enums
- Types - Types
- [X] Basic types for each kind of value - [X] Basic types for each kind of basic value
- [X] Generalized types: `num`, `any`, `none` - [X] Generalized types: `num`, `any`, `none`
- [ ] `struct` types - [ ] `struct` types
- [ ] `enum` types - [ ] `enum` types