aboutsummaryrefslogtreecommitdiff
path: root/hello-world-with-multiple-source-files/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'hello-world-with-multiple-source-files/hello.c')
-rw-r--r--hello-world-with-multiple-source-files/hello.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/hello-world-with-multiple-source-files/hello.c b/hello-world-with-multiple-source-files/hello.c
new file mode 100644
index 0000000..17b896e
--- /dev/null
+++ b/hello-world-with-multiple-source-files/hello.c
@@ -0,0 +1,7 @@
+#include "print.h"
+
+int main ()
+{
+ printf("Hello world!\n");
+ return 0;
+}