diff options
-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") |