diff options
Diffstat (limited to 'examples/hello.c')
| -rw-r--r-- | examples/hello.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/hello.c b/examples/hello.c new file mode 100644 index 0000000..5dce624 --- /dev/null +++ b/examples/hello.c @@ -0,0 +1,5 @@ +int printf(const char*, ...); + +int main() { + printf("Hello, World!\n"); +} |
