zig/test/hello.zig

7 lines
118 B
Zig
Raw Normal View History

2015-08-06 06:46:40 +08:00
#include <stdio.h>
#include "add.h"
int main(int argc, char **argv) {
fprintf(stderr, "hello: %d", add(1, 2));
}