summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.org5
-rw-r--r--c/help.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/README.org b/README.org
index a71a9b9..771d8db 100644
--- a/README.org
+++ b/README.org
@@ -13,5 +13,10 @@ Often found as a bash built-in command, but this one does tell you to RTFM. It h
 + Janet ~cd janet && janet help.janet~
 + OCaml ~cd ocaml && ocaml help.ml || cd ocaml && ocamlc -o help help.ml~
 + Python ~cd python && python3 help.py~
++ C ~cd c && cc -o help help.c~
+
+By the way, this is just an example on how a useless program like this can be implemented in many ways possible. 
+
+Also I'm skipping languages I have a serious dislike to.
 
 Licensed under [[file:COPYING][DPL-1.1]]
diff --git a/c/help.c b/c/help.c
new file mode 100644
index 0000000..19edc66
--- /dev/null
+++ b/c/help.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+	printf("would you mind reading the fucking manual pages?\n");
+	return 0;
+}