Merge branch 'working'
[lambda.git] / topics / week13_coroutines_exceptions_and_aborts.mdwn
index 706050e..a9d8bc2 100644 (file)
@@ -255,7 +255,7 @@ A more general way to think about these snapshots is to think of the code we're
             else abort 20
             ) + 100
         end
-    in (foo 2) + 1;; (* this line is new *)
+    in (foo 2) + 1000;; (* this line is new *)
 
 we can imagine a box:
 
@@ -422,7 +422,7 @@ There are also different kinds of "syntactic sugar" we can use to hide the conti
                     (shift k
                       (if (eqv? x 1) (k 10) 20))
                     100)))])
-      (+ (foo 1) 1000))
+      (+ (foo 2) 1000))
 
 
 <!--