- removed experimental test lib - fixed watch not outputting errors - updated examples - added TODOs for when standard is made public
10 lines
133 B
C
10 lines
133 B
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
|
|
void test_it_works() {
|
|
assert(2 + 2 == 4);
|
|
}
|
|
|
|
void test_it_fails() {
|
|
assert(2 + 2 == 5);
|
|
}
|