summaryrefslogtreecommitdiff
path: root/c/hello_world.c
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-05-05 18:09:27 -0500
committerChristian Cleberg <hello@cleberg.net>2025-05-05 18:09:27 -0500
commit3ec668ac415d2d92b28e658b17d8932d0cbe2b3b (patch)
tree7bfb32b5b0d5731e9d9468809b3b0cdd1e744201 /c/hello_world.c
downloadlearn-3ec668ac415d2d92b28e658b17d8932d0cbe2b3b.tar.gz
learn-3ec668ac415d2d92b28e658b17d8932d0cbe2b3b.tar.bz2
learn-3ec668ac415d2d92b28e658b17d8932d0cbe2b3b.zip
initial commit
Diffstat (limited to 'c/hello_world.c')
-rw-r--r--c/hello_world.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/c/hello_world.c b/c/hello_world.c
new file mode 100644
index 0000000..648e6b0
--- /dev/null
+++ b/c/hello_world.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello world!");
+ return 0;
+}