diff options
-rw-r--r-- | README.org | 4 | ||||
-rw-r--r-- | fennel/help.fnl | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/README.org b/README.org index c254694..58ed9cf 100644 --- a/README.org +++ b/README.org @@ -1,6 +1,7 @@ #+TITLE: help #+DESCRIPTION: Often found as a bash built-in command, but this one does tell you to RTFM #+AUTHOR: Aoi Koizumi +#+OPTIONS: toc:nil * help Often found as a bash built-in command, but this one does tell you to RTFM. It has several variants in order of appearance: @@ -17,7 +18,8 @@ Often found as a bash built-in command, but this one does tell you to RTFM. It h + Rust ~cd rust && rustc help.rs~ (contributed by shokara) + Common Lisp ~cd cl && sbcl --load help.lisp --eval '(help)'~ + Racket ~cd racket && racket help.rkt~ - ++ Fennel ~cd fennel && fennel help.fnl~ + 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. diff --git a/fennel/help.fnl b/fennel/help.fnl new file mode 100644 index 0000000..3dfe591 --- /dev/null +++ b/fennel/help.fnl @@ -0,0 +1,4 @@ +(fn help [a] + (print "would you mind reading the fucking manual pages?")) + +(help) |