summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhaskell-setup.bash15
1 files changed, 15 insertions, 0 deletions
diff --git a/haskell-setup.bash b/haskell-setup.bash
new file mode 100755
index 0000000..557eb5f
--- /dev/null
+++ b/haskell-setup.bash
@@ -0,0 +1,15 @@
+#!/bin/bash
+#
+# Set up for Yale Haskell 2.x users.
+#
+
+export PRELUDE="${HASKELL}/progs/prelude"
+export HASKELL_LIBRARY="${HASKELL}/progs/lib"
+
+# You may need to change this to point at the appropriate subdirectory,
+# depending on which Lisp is being used.
+export PRELUDEBIN="${PRELUDE}/clisp"
+
+# You may need to change this to point at the appropriate executable,
+# depending on which Lisp is being used.
+export HASKELLPROG="${HASKELL}/bin/clisp-haskell"