Added more tests

This commit is contained in:
Eduard Urbach 2025-03-14 00:08:58 +01:00
parent b7d76ff3e3
commit e367b664bb
Signed by: eduard
GPG key ID: 49226B848C78F6C8
6 changed files with 42 additions and 0 deletions

9
tests/programs/div.q Normal file
View file

@ -0,0 +1,9 @@
main() {
assert 0 / 1 == 0
assert 1 / 1 == 1
assert 1 / 2 == 0
assert 2 / 1 == 2
assert 2 / 2 == 1
assert 4 / 2 == 2
assert 8 / 2 == 4
}