Created
March 23, 2015 16:46
-
-
Save paulp/0fe78b0d76c4df85bb54 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
set -e | |
pushd "$(mktemp -dt scalaz)" | |
cat >build.sbt <<EOM | |
scalaVersion := "2.11.6" | |
libraryDependencies ++= Seq( | |
"org.scalaz" %% "scalaz-core" % "7.1.1", | |
"org.scalaz" %% "scalaz-concurrent" % "7.1.1", | |
"org.scalaz" %% "scalaz-effect" % "7.1.1" | |
) | |
initialCommands := "import scalaz._, Scalaz._" | |
EOM | |
sbt console | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment