Updated readme.

This commit is contained in:
Christoffer Lerno
2021-07-21 19:33:08 +02:00
parent 198e3c369c
commit d5f5d59a37

View File

@@ -42,7 +42,7 @@ The generated binary will be called `a.out`.
- No mandatory header files - No mandatory header files
- New semantic macro system - New semantic macro system
- Module based name spacing - Module based name spacing
- Subarrays (slices) and dynamic arrays built in - Subarrays (slices)
- Compile time reflection - Compile time reflection
- Enhanced compile time execution - Enhanced compile time execution
- Generics based on generic modules - Generics based on generic modules
@@ -50,9 +50,10 @@ The generated binary will be called `a.out`.
- Defer - Defer
- Value methods - Value methods
- Associated enum data - Associated enum data
- Built in strings - Built-in hooks for convenient string handling
- No preprocessor - No preprocessor
- Undefined behaviour trapped on debug by default - Less undefined behaviour and runtime checks in "safe" mode
- Limited operator overloading to enable userland dynamic arrays
- Optional pre and post conditions - Optional pre and post conditions
### Current status ### Current status
@@ -116,6 +117,7 @@ to C3 and compiled with the c3c compiler:
- [x] range initializers e.g. `{ [1..2] = 2 }` - [x] range initializers e.g. `{ [1..2] = 2 }`
- [x] Trailing body macros e.g. `@foo(1, 100; int a) { bar(a); };` - [x] Trailing body macros e.g. `@foo(1, 100; int a) { bar(a); };`
- [x] Complex macros - [x] Complex macros
- [x] CT type constants
- [ ] Anonymous structs - [ ] Anonymous structs
- [ ] Complete C ABI conformance *in progress* - [ ] Complete C ABI conformance *in progress*
- [ ] Debug info *in progress* - [ ] Debug info *in progress*
@@ -124,7 +126,6 @@ to C3 and compiled with the c3c compiler:
- [ ] Windows support *in progress* - [ ] Windows support *in progress*
- [ ] All attributes *in progress* - [ ] All attributes *in progress*
- [ ] Associative array literals - [ ] Associative array literals
- [ ] CT type constants
- [ ] Reflection methods - [ ] Reflection methods
- [ ] LTO/ThinLTO setup - [ ] LTO/ThinLTO setup
- [ ] `global` / `shared` for globals - [ ] `global` / `shared` for globals