diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/hello-world.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/hello-world.c b/test/hello-world.c new file mode 100644 index 0000000..ec2e87c --- /dev/null +++ b/test/hello-world.c @@ -0,0 +1,6 @@ +void printf(char* str); + +int main (int argc, char** argv) { + printf("hello world\n"); + return 0; +} |
