diff options
Diffstat (limited to 'test/lld/hello_world.c')
-rw-r--r-- | test/lld/hello_world.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/lld/hello_world.c b/test/lld/hello_world.c new file mode 100644 index 000000000..babd8d43c --- /dev/null +++ b/test/lld/hello_world.c @@ -0,0 +1,6 @@ +int puts(const char* str); + +int main() { + puts("Hello, world"); + return 0; +} |