Implemented assert keyword

This commit is contained in:
Eduard Urbach 2024-07-25 16:47:25 +02:00
parent f0bc5039ee
commit f4dd9004be
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
14 changed files with 81 additions and 1 deletions

6
tests/programs/assert.q Normal file
View file

@ -0,0 +1,6 @@
main() {
assert 1 != 0
assert 1 == 0 || 1 != 0
assert 1 != 0 && 2 != 0
assert 1 == 0
}