]> _ Git - playing-with-c.git/commitdiff
hello world
authorDavid Jacquin <[email protected]>
Tue, 13 Jan 2026 22:37:43 +0000 (14:37 -0800)
committerDavid Jacquin <[email protected]>
Tue, 13 Jan 2026 22:37:43 +0000 (14:37 -0800)
a.out [new file with mode: 0755]
app.c [new file with mode: 0644]

diff --git a/a.out b/a.out
new file mode 100755 (executable)
index 0000000..0b895ba
Binary files /dev/null and b/a.out differ
diff --git a/app.c b/app.c
new file mode 100644 (file)
index 0000000..2f7b91b
--- /dev/null
+++ b/app.c
@@ -0,0 +1,5 @@
+#include <stdio.h>
+
+int main(){
+       printf("Hello World\n");
+}