(no commit message)
[lambda.git] / assignment1.mdwn
index bfaafdc..b65cc17 100644 (file)
@@ -27,6 +27,7 @@ In Racket, these can be defined like this:
        (define false (lambda (t) (lambda (f) f)))
 
 * Define a "neg" operator that negates "true" and "false".
+
 Expected behavior: 
 
     (((neg true) 10) 20)
@@ -40,6 +41,7 @@ evaluates to 10.
 * Define an "and" operator.
 
 * Define an "xor" operator. 
+
 (If you haven't seen this term before, here's a truth table:
 
     true xor true = false