aboutsummaryrefslogtreecommitdiff
path: root/hello-world-with-multiple-source-files/hello.c
diff options
context:
space:
mode:
authorArun Isaac2025-04-07 15:57:53 +0100
committerArun Isaac2025-04-07 15:57:53 +0100
commita760bff3efa44c282ed119032a6831bdaac79e7b (patch)
tree44a74e8d59b44065ab5b3a3270ba57827ec5fc1a /hello-world-with-multiple-source-files/hello.c
downloadgexp-make-a760bff3efa44c282ed119032a6831bdaac79e7b.tar.gz
gexp-make-a760bff3efa44c282ed119032a6831bdaac79e7b.tar.lz
gexp-make-a760bff3efa44c282ed119032a6831bdaac79e7b.zip
Initial commit
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;
+}