diff src/mono_print.sml @ 251:326fb4686f60

Monoize transaction identifiers; improve disjointness prover on irreducible folds; change 'query' type
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 10:36:54 -0400
parents 71bafe66dbe1
children 7e9bd70ad3ce
line wrap: on
line diff
--- a/src/mono_print.sml	Sun Aug 31 09:52:52 2008 -0400
+++ b/src/mono_print.sml	Sun Aug 31 10:36:54 2008 -0400
@@ -185,6 +185,21 @@
                               string ";",
                               space,
                               p_exp env e2]
+      | ELet (x, t, e1, e2) => box [string "let",
+                                    space,
+                                    string x,
+                                    space,
+                                    string ":",
+                                    space,
+                                    p_typ env t,
+                                    space,
+                                    string "=",
+                                    space,
+                                    p_exp env e1,
+                                    space,
+                                    string "in",
+                                    space,
+                                    p_exp (E.pushERel env x t NONE) e2]
 
       | EClosure (n, es) => box [string "CLOSURE(",
                                  p_enamed env n,