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: Supported features:
- Primitives: int, long, double, boolean, char - Primitives: int, long, double, boolean, char
- Arrays and strings - Arrays, strings, and array initializers
- Objects and instance methods - Objects, instance methods, and instanceof
- Inheritance - Inheritance and interfaces
- Control flow: if/else, while, for, break, continue - 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 - File I/O
- Recursion - Recursion
- System.out.println - System.out.println
@ -59,10 +62,10 @@ Run the benchmark:
make benchmark make benchmark
``` ```
Run tests: Run all tests:
```bash ```bash
make test_runtime && ./test_runtime make test
``` ```
## Performance ## Performance