summaryrefslogtreecommitdiff
path: root/docs/examples/monads/simpleInterpreter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/monads/simpleInterpreter.scala')
-rw-r--r--docs/examples/monads/simpleInterpreter.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/monads/simpleInterpreter.scala b/docs/examples/monads/simpleInterpreter.scala
index 219b137c31..cde3a92dbb 100644
--- a/docs/examples/monads/simpleInterpreter.scala
+++ b/docs/examples/monads/simpleInterpreter.scala
@@ -22,7 +22,7 @@ object simpleInterpreter {
trait Value;
case object Wrong extends Value {
override def toString() = "wrong"
- }
+ }
case class Num(n: Int) extends Value {
override def toString() = n.toString();
}
@@ -61,7 +61,7 @@ object simpleInterpreter {
yield c
}
- def test(t: Term): String =
+ def test(t: Term): String =
showM(interp(t, List()));
val term0 = App(Lam("x", Add(Var("x"), Var("x"))), Add(Con(10), Con(11)));