summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAoi Koizumi (古泉 あおい) <novaburst@kalli.st>2022-05-28 00:07:38 +0000
committerAoi Koizumi (古泉 あおい) <novaburst@kalli.st>2022-05-28 00:07:38 +0000
commit5a6badb73a05b649900d896cd1db3a8d978a7872 (patch)
tree6da45c83dbe08bebc8202bf095f8b31ce2899f7f
parent93fe9b33cf75afa67e5a361065357e2ce6f7cb36 (diff)
downloadhelp-5a6badb73a05b649900d896cd1db3a8d978a7872.tar.gz
add a racket
-rw-r--r--README.org3
-rw-r--r--racket/help.rkt5
2 files changed, 7 insertions, 1 deletions
diff --git a/README.org b/README.org
index 0d781bb..c254694 100644
--- a/README.org
+++ b/README.org
@@ -14,8 +14,9 @@ Often found as a bash built-in command, but this one does tell you to RTFM. It h
 + OCaml ~cd ocaml && ocaml help.ml || cd ocaml && ocamlc -o help help.ml~
 + Python ~cd python && python3 help.py~
 + C ~cd c && cc -o help help.c~
-+ Rust ~cd rust && rustc help.rs~
++ 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~
 
 By the way, this is just an example on how a useless program like this can be implemented in many ways possible. 
 
diff --git a/racket/help.rkt b/racket/help.rkt
new file mode 100644
index 0000000..475e4c1
--- /dev/null
+++ b/racket/help.rkt
@@ -0,0 +1,5 @@
+#!/usr/bin/env racket
+
+#lang racket/base
+
+(displayln "would you mind reading the fucking manual pages?")