mirror of https://github.com/flysand7/ciabatta.git
8 lines
101 B
C
8 lines
101 B
C
|
|
||
|
#include <assert.h>
|
||
|
|
||
|
int main() {
|
||
|
assert(2+2 == 4);
|
||
|
assert(0 != 0); // Bad case of assert
|
||
|
}
|