diff options
author | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-25 01:45:30 +0000 |
---|---|---|
committer | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-25 01:45:30 +0000 |
commit | 569f2b0098ed1539fbd5084e23cb3556d345fb35 (patch) | |
tree | 2a6eb2253225993b1c50b073835f44124ae8936f | |
parent | 1eb3aaf21156c94c6c1abbe35d4f715be7a77a90 (diff) | |
download | help-569f2b0098ed1539fbd5084e23cb3556d345fb35.tar.gz |
kekw
-rw-r--r-- | README.org | 5 | ||||
-rw-r--r-- | c/help.c | 6 |
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; +} |