summaryrefslogtreecommitdiff
path: root/docs/examples/monads/directInterpreter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/monads/directInterpreter.scala')
-rw-r--r--docs/examples/monads/directInterpreter.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/monads/directInterpreter.scala b/docs/examples/monads/directInterpreter.scala
index a80c9e4ed0..06fffba8e2 100644
--- a/docs/examples/monads/directInterpreter.scala
+++ b/docs/examples/monads/directInterpreter.scala
@@ -45,11 +45,11 @@ object directInterpreter {
case App(f, t) => apply(interp(f, e), interp(t, e))
}
- def test(t: Term): String =
+ def test(t: Term): String =
showval(interp(t, List()));
val term0 = App(Lam("x", Add(Var("x"), Var("x"))), Add(Con(10), Con(11)));
- def main(args: Array[String]) =
+ def main(args: Array[String]) =
System.out.println(test(term0));
}