# Summary
[Introduction](./00-introduction.md)
# Part 1: Foundation (Features 1-9)
- [Basic Syntax](./01-basic-syntax/README.md)
- [Literals](./01-basic-syntax/01-literals.md)
- [Variables & Assignment](./01-basic-syntax/02-variables.md)
- [Comments](./01-basic-syntax/03-comments.md)
- [Operators](./02-operators/README.md)
- [Arithmetic Operators](./02-operators/01-arithmetic.md)
- [Comparison Operators](./02-operators/02-comparison.md)
- [Logical Operators](./02-operators/03-logical.md)
- [Bitwise Operators](./02-operators/04-bitwise.md)
- [Control Flow](./03-control-flow/README.md)
- [If-Else Expressions](./03-control-flow/01-if-else.md)
- [Match Expressions](./03-control-flow/02-match.md)
- [For Loops](./03-control-flow/03-for-loops.md)
- [While Loops](./03-control-flow/04-while-loops.md)
- [Loop Control (break/continue)](./03-control-flow/05-loop-control.md)
# Part 2: Functions & Data (Features 10-20)
- [Functions](./04-functions/README.md)
- [Function Definitions](./04-functions/01-definitions.md)
- [Parameters & Return Values](./04-functions/02-parameters.md)
- [Closures & Lambdas](./04-functions/03-closures.md)
- [Higher-Order Functions](./04-functions/04-higher-order.md)
- [Data Structures](./05-data-structures/README.md)
- [Arrays](./05-data-structures/01-arrays.md)
- [Tuples](./05-data-structures/02-tuples.md)
- [Objects/Maps](./05-data-structures/03-objects.md)
- [Structs](./05-data-structures/04-structs.md)
- [Enums](./05-data-structures/05-enums.md)
# Part 3: Advanced Features (Features 21-30)
- [Pattern Matching](./06-pattern-matching/README.md)
- [Destructuring](./06-pattern-matching/01-destructuring.md)
- [Guards](./06-pattern-matching/02-guards.md)
- [Exhaustiveness](./06-pattern-matching/03-exhaustiveness.md)
- [Error Handling](./07-error-handling/README.md)
- [Try-Catch](./07-error-handling/01-try-catch.md)
- [Option Type](./07-error-handling/02-option.md)
- [Result Type](./07-error-handling/03-result.md)
- [String Features](./08-strings/README.md)
- [String Interpolation](./08-strings/01-interpolation.md)
- [String Methods](./08-strings/02-methods.md)
- [String Escaping](./08-strings/03-escaping.md)
# Part 4: Standard Library (Features 26-30)
- [Standard Library](./09-stdlib/README.md)
- [Collections](./09-stdlib/01-collections.md)
- [Iterators](./09-stdlib/02-iterators.md)
- [I/O Operations](./09-stdlib/03-io.md)
- [Math Functions](./09-stdlib/04-math.md)
- [Time & Date](./09-stdlib/05-time.md)
# Part 5: Advanced Features (Features 31-42)
- [Advanced Features](./10-advanced/README.md)
- [Generics](./10-advanced/01-generics.md)
- [Traits](./10-advanced/02-traits.md)
- [Lifetimes](./10-advanced/03-lifetimes.md)
- [Async/Await](./10-advanced/04-async-await.md)
- [Futures](./10-advanced/05-futures.md)
- [Concurrency](./10-advanced/006-concurrency.md)
- [FFI & Unsafe](./10-advanced/007-ffi-unsafe.md)
- [Macros](./10-advanced/008-macros.md)
- [Metaprogramming](./10-advanced/009-metaprogramming.md)
- [Advanced Patterns](./10-advanced/10-advanced-patterns.md)
- [Optimization](./10-advanced/11-optimization.md)
- [Testing](./10-advanced/12-testing.md)
# Part 6: Quality Proof
- [Testing & Validation](./10-validation/README.md)
- [Test Coverage Report](./10-validation/01-coverage.md)
- [Mutation Testing Report](./10-validation/02-mutation.md)
- [E2E Test Report](./10-validation/03-e2e.md)
- [WASM Validation](./10-validation/04-wasm.md)
[Conclusion](./11-conclusion.md)