diff options
-rw-r--r-- | callcc.mu | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/callcc.mu b/callcc.mu index c9edfa47..a08f9c8a 100644 --- a/callcc.mu +++ b/callcc.mu @@ -1,7 +1,6 @@ # example program: saving and reusing call-stacks or continuations recipe main [ -#? $start-tracing #? 1 c:continuation <- f continue-from c:continuation # <-- ..when you hit this ] @@ -14,5 +13,5 @@ recipe f [ recipe g [ c:continuation <- current-continuation # <-- loop back to here $print 1:literal - reply c:continuation + reply c:continuation # threaded through unmodified after first iteration ] |