summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSkiz <skiznet@aol.com>2024-08-28 14:51:20 -0400
committerSkiz <skiznet@aol.com>2024-08-28 14:51:20 -0400
commit50e75958113e0e08976d5f5fae5befa45758e505 (patch)
tree5b1197161073f2d7c9f8192cd051dedeb7b55c60
parent6c31202948bc967a10a1bc3e6337a2026d635fc3 (diff)
Made basic hello world.HEADmaster
-rw-r--r--src/hello.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/hello.c b/src/hello.c
new file mode 100644
index 0000000..fca997b
--- /dev/null
+++ b/src/hello.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main(){
+
+ printf("Hello world \n");
+
+ return 0;
+}