tweak calc improvements
authorJim Pryor <profjim@jimpryor.net>
Fri, 26 Nov 2010 12:58:24 +0000 (07:58 -0500)
committerJim Pryor <profjim@jimpryor.net>
Fri, 26 Nov 2010 12:58:24 +0000 (07:58 -0500)
Signed-off-by: Jim Pryor <profjim@jimpryor.net>
code/calculator/calc1.ml
code/calculator/calc2.ml
code/calculator/calc3.ml
code/calculator/calc4.ml
code/calculator/calc5.ml
code/calculator/calc6.ml
code/calculator/calc7.ml

index 554ce7c..b0c5cea 100644 (file)
@@ -1,4 +1,4 @@
-(* Original calculator from Week7, enhanced with Booleans and Immutable Pairs *)
+(* calc1.ml: original calculator from Week7, enhanced with Booleans and Immutable Pairs *)
 
     type term =
       Intconstant of int
index ef4a37c..521b81d 100644 (file)
@@ -1,4 +1,4 @@
-(* calc1.ml, enhanced with Function Values *)
+(* calc2.ml: calc1.ml enhanced with Function Values *)
 
     type term =
       Intconstant of int
index 65bf754..523a6bb 100644 (file)
@@ -1,4 +1,4 @@
-(* calc2.ml, enhanced with Recursive Function Values *)
+(* calc3.ml: calc2.ml enhanced with Recursive Function Values *)
 
     type term =
       Intconstant of int
index 54519f0..1343827 100644 (file)
@@ -1,4 +1,4 @@
-(* calc3.ml, enhanced with Mutable Cells *)
+(* calc4.ml: calc3.ml enhanced with Mutable Cells *)
 
     type term =
       Intconstant of int
index 593f296..f855c88 100644 (file)
@@ -1,4 +1,4 @@
-(* calc3,ml, enhanced with Mutable Pairs *)
+(* calc5.ml: calc3,ml enhanced with Mutable Pairs *)
 
     type term =
       Intconstant of int
index fa3f183..9cf5abc 100644 (file)
@@ -1,4 +1,4 @@
-(* calc3.ml, enhanced with Mutable Variables *)
+(* calc6.ml: calc3.ml enhanced with Mutable Variables *)
 
     type term =
       Intconstant of int
index 6fc6338..6a3e55c 100644 (file)
@@ -1,4 +1,4 @@
-(* calc6.ml, enhanced with Aliases and Passing by Reference *)
+(* calc7.ml: calc6.ml enhanced with Aliases and Passing by Reference *)
 
     type term =
       Intconstant of int