summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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?")
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173