Project Info Name.......: hello-world.git
Description: A Test Project


hello-world.git       
Info
Commit...:8f659483190feb8a2cf36cd36861d2ddabfec5cd
Author...:Charadon
Committer:Charadon
Date.....:Thu Apr 2 22:42:29 2026 -0400
Parents..:

Message
Initial Commit

Changes
diff --git a/Makefile b/Makefile
line changes: +5/-0
index 0000000..8c1c557
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+all:
+	cc hello.c -o hello
+
+clean:
+	-rm -f hello

diff --git a/hello.c b/hello.c
line changes: +7/-0
index 0000000..66b5c2f
--- /dev/null
+++ b/hello.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main()
+{
+	printf("Hello!\n");
+	return(0);
+}

This website is licensed under AGPL-3.0. Feel free to copy!