add #occurs_free
authorjim <jim@web>
Mon, 23 Mar 2015 19:33:53 +0000 (15:33 -0400)
committerLinux User <ikiwiki@localhost.members.linode.com>
Mon, 23 Mar 2015 19:33:53 +0000 (15:33 -0400)
exercises/assignment5_answers.mdwn

index 9618cd3..0005ec6 100644 (file)
@@ -436,6 +436,7 @@ Again, we've left some gaps. (The use of `type` for the first line in Haskell an
 
         type lambda_term = Var of identifier | Abstract of identifier * lambda_term | App of lambda_term * lambda_term
 
+<a id="occurs_free"></a>
 16. Write a function `occurs_free` that has the following type:
 
         occurs_free : identifier -> lambda_term -> bool