Implemented assert keyword
This commit is contained in:
parent
f0a1b97f2d
commit
e4f041be41
14 changed files with 81 additions and 1 deletions
6
tests/programs/assert.q
Normal file
6
tests/programs/assert.q
Normal file
|
@ -0,0 +1,6 @@
|
|||
main() {
|
||||
assert 1 != 0
|
||||
assert 1 == 0 || 1 != 0
|
||||
assert 1 != 0 && 2 != 0
|
||||
assert 1 == 0
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue