tweak calc improvements
[lambda.git] / code / calculator / calc2.ml
index 9db0dea..57a3342 100644 (file)
@@ -1,18 +1,18 @@
 (* calc1.ml, enhanced with Function Values *)
 
        type term =
-                 Intconstant of int
-               | Multiplication of (term * term)
-               | Addition of (term * term)
-               | Variable of char
-               | Let of (char * term * term)
-               | Iszero of term
-               | If of (term * term * term)
-               | Makepair of (term * term)
-               | First of term
-               | Lambda of (char * term)
-               | Apply of (term * term)
-        ;;
+      Intconstant of int
+    | Multiplication of (term * term)
+    | Addition of (term * term)
+    | Variable of char
+    | Let of (char * term * term)
+    | Iszero of term
+    | If of (term * term * term)
+    | Makepair of (term * term)
+    | First of term
+    | Lambda of (char * term)
+    | Apply of (term * term)
+    ;;
 
     type bound_value = expressed_value
        and assignment = (char * bound_value) list