diff options
author | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-24 22:27:55 +0000 |
---|---|---|
committer | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-24 22:27:55 +0000 |
commit | 1eb3aaf21156c94c6c1abbe35d4f715be7a77a90 (patch) | |
tree | e1075499339b07376a4470e9d2cb1114029c7925 | |
parent | 4b69ecef81ff3e90d1e504fadca3ca96e5a28068 (diff) | |
download | help-1eb3aaf21156c94c6c1abbe35d4f715be7a77a90.tar.gz |
added two more variants
-rw-r--r-- | README.org | 2 | ||||
-rw-r--r-- | ocaml/help.ml | 2 | ||||
-rw-r--r-- | python/help.py | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/README.org b/README.org index 15ac44f..a71a9b9 100644 --- a/README.org +++ b/README.org @@ -11,5 +11,7 @@ Often found as a bash built-in command, but this one does tell you to RTFM. It h + Lua ~cd lua && lua5(1/2/3/4) help.lua~ + Shell ~cd sh && sh help.sh~ + 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~ Licensed under [[file:COPYING][DPL-1.1]] diff --git a/ocaml/help.ml b/ocaml/help.ml new file mode 100644 index 0000000..9e9b446 --- /dev/null +++ b/ocaml/help.ml @@ -0,0 +1,2 @@ +let () = + print_endline "would you mind reading the fucking manual pages?" diff --git a/python/help.py b/python/help.py new file mode 100644 index 0000000..d911c17 --- /dev/null +++ b/python/help.py @@ -0,0 +1 @@ +print("would you mind reading the fucking manual pages?") |