mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
7 lines
128 B
C
7 lines
128 B
C
#include "mathtest.h"
|
|
#include <assert.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
assert(add(42, 1337) == 1379);
|
|
return 0;
|
|
}
|