diff options
author | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-31 16:04:22 +0000 |
---|---|---|
committer | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-31 16:04:22 +0000 |
commit | 2d80303874399ce944e9ba1aeb1064a67e9dc6d2 (patch) | |
tree | 4300c14469d7f34bc891735e7559ae7a7688d5a6 | |
parent | 269b302fdec6f34c78e1bada87c63f7658fbe1b6 (diff) | |
download | help-2d80303874399ce944e9ba1aeb1064a67e9dc6d2.tar.gz |
add gambit
-rw-r--r-- | README.org | 3 | ||||
-rw-r--r-- | gambit/help.scm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/README.org b/README.org index 58ed9cf..0abcc93 100644 --- a/README.org +++ b/README.org @@ -19,7 +19,8 @@ Often found as a bash built-in command, but this one does tell you to RTFM. It h + Common Lisp ~cd cl && sbcl --load help.lisp --eval '(help)'~ + Racket ~cd racket && racket help.rkt~ + Fennel ~cd fennel && fennel help.fnl~ - ++ Gambit ~cd gambit && gsi help.scm || cd gambit && gsc -exe help.scm~ + 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/gambit/help.scm b/gambit/help.scm new file mode 100644 index 0000000..a54183c --- /dev/null +++ b/gambit/help.scm @@ -0,0 +1,2 @@ +;; Dependencies: Gambit Scheme +(display "would you mind reading the fucking manual pages? \n") |