Skip to content

Instantly share code, notes, and snippets.

@paulp
Created March 23, 2015 16:46
Show Gist options
  • Save paulp/0fe78b0d76c4df85bb54 to your computer and use it in GitHub Desktop.
Save paulp/0fe78b0d76c4df85bb54 to your computer and use it in GitHub Desktop.
#!/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