diff options
Diffstat (limited to 'hello-world-with-multiple-source-files/print.c')
-rw-r--r-- | hello-world-with-multiple-source-files/print.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hello-world-with-multiple-source-files/print.c b/hello-world-with-multiple-source-files/print.c new file mode 100644 index 0000000..1630d29 --- /dev/null +++ b/hello-world-with-multiple-source-files/print.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +void print() +{ + printf("Hello world!\n"); +} |