Update docs

This commit is contained in:
Bruce Hill 2024-04-20 15:12:25 -04:00
parent a4ffdb1798
commit 8991898a2d

View File

@ -27,27 +27,35 @@ Hello John Doe!
## Features ## Features
### Performance
- Extremely high performance code generation with minimal overhead compared to C - Extremely high performance code generation with minimal overhead compared to C
- Extremely fast parallel compilation times - Extremely fast parallel compilation times
- Language-level support for out-of-the-box function caching emphasizing
correctness
- Structs with known-at-compile-time methods, not OOP objects with vtable
lookups
## Safety
- Memory safety (garbage collection, compiler-enforced null safety, automatic - Memory safety (garbage collection, compiler-enforced null safety, automatic
array bounds checking, and no uninitialized variables) array bounds checking, and no uninitialized variables)
- Arithmetic overflow checking - Arithmetic overflow checking
- Simple, low-boilerplate type system with type inference
- Useful and efficient built-in types: arrays, hash tables, structs, tagged
unions (sum types), cords (efficient string representation)
- Well-defined reference and value semantics and mutability rules
- Language-level support for out-of-the-box function caching emphasizing
correctness
- Type-safe strings representing different languages with automatic prevention - Type-safe strings representing different languages with automatic prevention
of code injection of code injection
- Full UTF8 support for both source code and standard library
- Pattern matching with exhaustiveness checking for tagged unions - Pattern matching with exhaustiveness checking for tagged unions
## Simplicity
- Simple, low-boilerplate type system with type inference
- Well-defined reference and value semantics and mutability rules
## User-friendliness
- Useful and efficient built-in types: arrays, hash tables, structs, tagged
unions (sum types), cords (efficient string representation)
- Beautiful and helpful compiler and runtime error messages with emphasis on - Beautiful and helpful compiler and runtime error messages with emphasis on
user-friendliness user-friendliness
- Structs with known-at-compile-time methods, not OOP objects with vtable - Full UTF8 support for all text operations
lookups
- Built-in doctests with syntax highlighting - Built-in doctests with syntax highlighting
- Built-in type-safe command line argument parsing - Automatic command line argument parsing with type safety and no need for
libraries.
- Easy interoperability with C - Easy interoperability with C
## Dependencies ## Dependencies