Feat: Add test for operator precedence

This commit is contained in:
2025-09-26 08:30:35 -07:00
parent 50ab73cf1e
commit 16dc9cc99a

5
test/src/precedence.hi Normal file
View File

@@ -0,0 +1,5 @@
result: 2 + 3 * 4
_(result) // Should be 14, not 20
result2: (2 + 3) * 4
_(result2) // Should be 20