commit 08b5876

snarmph ยท 2026-09-07 19:20:37 parent 70abaee
trying some stuff out
2 files changed, +13, -0
A README.md
A main.c
A README.md +4, -0
1@@ -0,0 +1,4 @@
2+# Tring some stuff
3+
4+this is just kind of a 
5+*cool* _test_
A main.c +9, -0
 1@@ -0,0 +1,9 @@
 2+#include <stdio.h>
 3+
 4+int main(int argc, char **argv) {
 5+    for (int i = 0; i < argc; ++i) {
 6+        printf("%d) %s\n", i, argv[i]);
 7+    }
 8+    puts("hello world!");
 9+    return 0;
10+}