cps tweaks
[lambda.git] / cps_and_continuation_operators.mdwn
index d1a85cf..e3fb42d 100644 (file)
@@ -173,15 +173,15 @@ So too will examples. We'll give some examples, and show you how to try them out
 
                let callcc body = fun outk -> body (fun v localk -> outk v) outk
 
 
                let callcc body = fun outk -> body (fun v localk -> outk v) outk
 
-<!-- GOTCHAS?? -->
+       <!-- GOTCHAS?? -->
 
 3.     `callcc` was originally introduced in Scheme. There it's written `call/cc` and is an abbreviation of `call-with-current-continuation`. Instead of the somewhat bulky form:
 
 
 3.     `callcc` was originally introduced in Scheme. There it's written `call/cc` and is an abbreviation of `call-with-current-continuation`. Instead of the somewhat bulky form:
 
-       (call/cc (lambda (k) ...))
+               (call/cc (lambda (k) ...))
 
 
-I prefer instead to use the lighter, and equivalent, shorthand:
+       I prefer instead to use the lighter, and equivalent, shorthand:
 
 
-       (let/cc k ...)
+               (let/cc k ...)
 
 
 Callcc examples
 
 
 Callcc examples