diff options
-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?") |