We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0b2a5e commit 5f05686Copy full SHA for 5f05686
exercises/forth/build.sbt
@@ -1,5 +1,5 @@
1
-scalaVersion := "2.11.7"
+scalaVersion := "2.12.1"
2
3
4
-libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.5" % "test"
+libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"
5
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4"
exercises/forth/src/main/scala/Forth.scala
@@ -0,0 +1,6 @@
+import ForthError.ForthError
+
+class Forth extends ForthEvaluator {
+ def eval(text: String): Either[ForthError, ForthEvaluatorState] = ???
6
+}
0 commit comments