diff options
Diffstat (limited to 'test/hello_world.c')
-rw-r--r-- | test/hello_world.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/hello_world.c b/test/hello_world.c new file mode 100644 index 000000000..eb47ea813 --- /dev/null +++ b/test/hello_world.c @@ -0,0 +1,7 @@ +#include<stdio.h> + +int main() { + printf("hello, world!\n"); + return 0; +} + |