diff options
Diffstat (limited to 'rushs/tinyprintf/hello_world')
| -rw-r--r-- | rushs/tinyprintf/hello_world/hello.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/rushs/tinyprintf/hello_world/hello.c b/rushs/tinyprintf/hello_world/hello.c new file mode 100644 index 0000000..0681c18 --- /dev/null +++ b/rushs/tinyprintf/hello_world/hello.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(void) +{ + puts("Hello World!"); + return 0; +} |
