ish/tests/e2e/hello/test_c.c
Matthew Merrill e23c6bc2a4 Move all tests to tests subdirectory
Previous tests/ contents are moved to tests/manual.
E2E tests are moved to tests/e2e.
2019-06-06 22:33:53 -07:00

7 lines
80 B
C

#include <stdio.h>
int main(void) {
printf("Hello, C!\n");
return 0;
}