summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAoi Koizumi (古泉 あおい) <novaburst@kalli.st>2022-05-28 17:53:50 +0000
committerAoi Koizumi (古泉 あおい) <novaburst@kalli.st>2022-05-28 17:53:50 +0000
commit269b302fdec6f34c78e1bada87c63f7658fbe1b6 (patch)
tree0d901de5c8ab8eb5353774e5dd269629d3f776b5
parent5a6badb73a05b649900d896cd1db3a8d978a7872 (diff)
downloadhelp-269b302fdec6f34c78e1bada87c63f7658fbe1b6.tar.gz
add fennel
-rw-r--r--README.org4
-rw-r--r--fennel/help.fnl4
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)