zig/example/shared_library/test.c

8 lines
128 B
C

#include "mathtest.h"
#include <assert.h>
int main(int argc, char **argv) {
assert(add(42, 1337) == 1379);
return 0;
}