diff --git a/README.md b/README.md index 3b1d6c4..f0bab8a 100644 --- a/README.md +++ b/README.md @@ -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