Update.
Some checks failed
CI / Unit Tests (push) Failing after 14s
CI / Optimization Infrastructure Tests (push) Failing after 14s
CI / Integration Tests (push) Has been skipped
CI / Performance Benchmark (push) Has been skipped

This commit is contained in:
retoor 2025-12-02 21:15:14 +01:00
parent de48b1e64c
commit 44126e4ac0

View File

@ -17,10 +17,13 @@ The pipeline:
Supported features:
- Primitives: int, long, double, boolean, char
- Arrays and strings
- Objects and instance methods
- Inheritance
- Control flow: if/else, while, for, break, continue
- Arrays, strings, and array initializers
- Objects, instance methods, and instanceof
- Inheritance and interfaces
- Control flow: if/else, while, do-while, for, enhanced for-each, switch/case, break, continue
- Operators: arithmetic, bitwise (AND, OR, XOR, shifts), ternary (? :)
- Exception handling: try/catch/finally, throw
- Math functions and String methods
- File I/O
- Recursion
- System.out.println
@ -59,10 +62,10 @@ Run the benchmark:
make benchmark
```
Run tests:
Run all tests:
```bash
make test_runtime && ./test_runtime
make test
```
## Performance