zig/example/shared_library/test.c
Andrew Kelley 55b8472374 refactor code to prepare for multiple files
verbose compiler output is now behind --verbose flag
2015-11-30 20:00:39 -07:00

8 lines
127 B
C

#include "mathtest.h"
#include <stdio.h>
int main(int argc, char **argv) {
printf("%d\n", add(42, 1137));
return 0;
}