diff options
Diffstat (limited to 'examples/hello_world_c_zig/tests')
-rw-r--r-- | examples/hello_world_c_zig/tests/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/hello_world_c_zig/tests/main.c b/examples/hello_world_c_zig/tests/main.c new file mode 100644 index 0000000..9ad80a6 --- /dev/null +++ b/examples/hello_world_c_zig/tests/main.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(int argc, char **argv) +{ + printf("hello, world!\n"); + return 0; +} |