Added operator precedence test

This commit is contained in:
2024-07-05 10:10:09 +02:00
parent 62057704f3
commit c13a70c958
3 changed files with 8 additions and 2 deletions

View File

@ -0,0 +1,5 @@
main() {
x := 2
y := 3
syscall(60, (x + y + (x + y) * (x + y)) / x / y + x + y)
}