Skip to content

Commit

Permalink
Update to scala 2.12.1 refs #235 . Add Forth.scala - refs #137 (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
ricemery authored and abo64 committed Dec 23, 2016
1 parent a0b2a5e commit 5f05686
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/forth/build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
scalaVersion := "2.11.7"
scalaVersion := "2.12.1"


libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.5" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4"
6 changes: 6 additions & 0 deletions exercises/forth/src/main/scala/Forth.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import ForthError.ForthError


class Forth extends ForthEvaluator {
def eval(text: String): Either[ForthError, ForthEvaluatorState] = ???
}

0 comments on commit 5f05686

Please sign in to comment.