diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-12-24 08:46:44 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-12-24 08:46:44 +0100 |
commit | 562993f44e1f48880a6863c95e940a8c8503392c (patch) | |
tree | 297e45ccb6397692d9a0dedb996819db8da19a4d | |
parent | b71a63c28f11328e3bbfd59d2736750c737f98bb (diff) |
Add environment definition for bash users.
-rwxr-xr-x | haskell-setup.bash | 15 |
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" |