q/tests/programs/assert.q

6 lines
No EOL
90 B
Text

main() {
assert 1 != 0
assert 1 == 0 || 1 != 0
assert 1 != 0 && 2 != 0
assert 1 == 0
}