summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAoi Koizumi (古泉 あおい) <novaburst@kalli.st>2022-05-24 14:15:48 +0000
committerAoi Koizumi (古泉 あおい) <novaburst@kalli.st>2022-05-24 14:15:48 +0000
commit4b69ecef81ff3e90d1e504fadca3ca96e5a28068 (patch)
tree9e5255c5d1fa499e541069589a78cb8a2a333b11
parent9d692a02b8e9c4f5e4f90fd0c25c1ef0ed88e677 (diff)
downloadhelp-4b69ecef81ff3e90d1e504fadca3ca96e5a28068.tar.gz
Middleware is the implementation of a concept. - Ed Szurkowski
-rw-r--r--README.org3
-rw-r--r--janet/help.janet1
2 files changed, 3 insertions, 1 deletions
diff --git a/README.org b/README.org
index ee19cf8..15ac44f 100644
--- a/README.org
+++ b/README.org
@@ -3,12 +3,13 @@
 #+AUTHOR: Aoi Koizumi
 
 * help
-Often found as a bash built-in command, but this one does tell you to RTFM. It has five variants in order of appearance:
+Often found as a bash built-in command, but this one does tell you to RTFM. It has several variants in order of appearance:
 
 + Go ~go build -v~
 + V ~cd v && v -o help~
 + CHICKEN Scheme ~cd chicken && csc help.scm || cd chicken && csi help.scm~
 + Lua ~cd lua && lua5(1/2/3/4) help.lua~
 + Shell ~cd sh && sh help.sh~
++ Janet ~cd janet && janet help.janet~
 
 Licensed under [[file:COPYING][DPL-1.1]]
diff --git a/janet/help.janet b/janet/help.janet
new file mode 100644
index 0000000..6306834
--- /dev/null
+++ b/janet/help.janet
@@ -0,0 +1 @@
+(print "would you mind reading the fucking manual pages?")