08b5876
1@@ -0,0 +1,4 @@ 2+# Tring some stuff 3+ 4+this is just kind of a 5+*cool* _test_
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+}