summaryrefslogtreecommitdiff
path: root/src/mono_print.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/mono_print.sml')
-rw-r--r--src/mono_print.sml7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mono_print.sml b/src/mono_print.sml
index ff61e30d..c0847019 100644
--- a/src/mono_print.sml
+++ b/src/mono_print.sml
@@ -111,6 +111,13 @@ fun p_exp' par env (e, _) =
string ".",
string x]
+
+ | EStrcat (e1, e2) => box [p_exp' true env e1,
+ space,
+ string ".",
+ space,
+ p_exp' true env e2]
+
and p_exp env = p_exp' false env
fun p_decl env ((d, _) : decl) =