Added assertions to most tests

This commit is contained in:
2024-07-28 18:47:13 +02:00
parent c2c147f1b4
commit 32d7455c38
15 changed files with 86 additions and 266 deletions

View File

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