diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-23 17:59:39 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-23 17:59:39 -0700 |
commit | 0aff568fcbc78a4b453d1246c0b379c470e73692 (patch) | |
tree | 2c2ddc288569b59a54e83977df773ee5f2ef0848 | |
parent | 50eab110e81f6f82a00a9eb7d87ccedd3697cfd3 (diff) | |
download | mu-0aff568fcbc78a4b453d1246c0b379c470e73692.tar.gz |
1445
-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 ] |