diff options
Diffstat (limited to 'test/01-hello.c')
| -rw-r--r-- | test/01-hello.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/01-hello.c b/test/01-hello.c new file mode 100644 index 0000000..69a8354 --- /dev/null +++ b/test/01-hello.c @@ -0,0 +1,8 @@ +/* EXPECT: +hello world +*/ + +#include <stdio.h> +int main(int argc, char **argv) { + printf("hello world\n"); +} |