aboutsummaryrefslogtreecommitdiff
path: root/ocaml/step2_eval.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ocaml/step2_eval.ml')
-rw-r--r--ocaml/step2_eval.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ocaml/step2_eval.ml b/ocaml/step2_eval.ml
index 02866eb..af8667c 100644
--- a/ocaml/step2_eval.ml
+++ b/ocaml/step2_eval.ml
@@ -32,7 +32,7 @@ and eval ast env =
| _ -> result
let read str = Reader.read_str str
-let print exp = Printer.pr_str exp
+let print exp = Printer.pr_str exp true
let rep str env = print (eval (read str) env)
let rec main =