link to Using monad library
[lambda.git] / code / untyped_evaluator_complete.ml
index 89962e3..f918d3a 100644 (file)
@@ -1,5 +1,5 @@
 (*
-   This is a simplified version of the code at http://lambda.jimpryor.net/code/untyped_full-1.3.tgz
+   This is a simplified version of the code at http://lambda.jimpryor.net/code/untyped_full-1.7.tgz
    You can use this code as follows:
 
    1. First, use a text editor to fill in the (* COMPLETE THIS *) portions.
@@ -61,7 +61,7 @@ and env = (identifier * term) list
 (* Operations for environments *)
 let empty = []
 let shift (ident : identifier) binding env = (ident,binding) :: env
-let rec lookup (sought_ident : ident) (env : env) : term option =
+let rec lookup (sought_ident : identifier) (env : env) : term option =
   match env with
   | [] -> None
   | (ident, binding) :: _ when ident = sought_ident -> Some binding