ucg/integration_tests/operator_precedence_test.ucg
Jeremy Wall b87d75c5c7 TESTS: Add a whole raft of integration tests.
* Integrate them into the build::comopile_test module as well.
2018-08-20 22:16:42 -05:00

7 lines
174 B
Plaintext

assert "2 * 2 + 1 == 5";
assert "2 + 2 * 3 == 8";
assert "2 * (2 + 1) == 6";
assert "2 * 2 + 1 > 4";
assert "2 * 2 + 1 > 6";
assert "2 * 2 + 1 >= 5";
assert "2 * 2 + 1 <= 5";