aboutsummaryrefslogtreecommitdiff
path: root/ocaml/step2_eval.ml
diff options
context:
space:
mode:
authorChouser <chouser@n01se.net>2015-01-23 20:05:03 -0500
committerChouser <chouser@n01se.net>2015-01-30 12:54:42 -0500
commitde04357cd5f2954e2d682abb97ca2b3b90ea75d1 (patch)
treef52fd11b6b3d21880409dc74b53c324d31fec7b5 /ocaml/step2_eval.ml
parent9115534dc73fe18a12b3b2ecf436051b76bdd8a4 (diff)
downloadmal-de04357cd5f2954e2d682abb97ca2b3b90ea75d1.tar.gz
mal-de04357cd5f2954e2d682abb97ca2b3b90ea75d1.zip
Ocaml: Add string functions
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 =