about summary refs log tree commit diff stats
path: root/053continuation.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-03 18:58:08 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-03 18:58:08 -0700
commite2f9979e5cc7297f89e3ff0c86860c6686e9eaab (patch)
treea5f530a268607a717310e2e4e59990abdf1107d8 /053continuation.cc
parent8f00b3470124e1d59107ee8c83a776cf86304186 (diff)
downloadmu-e2f9979e5cc7297f89e3ff0c86860c6686e9eaab.tar.gz
2137
Diffstat (limited to '053continuation.cc')
-rw-r--r--053continuation.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/053continuation.cc b/053continuation.cc
index 20cf1b05..769e09e8 100644
--- a/053continuation.cc
+++ b/053continuation.cc
@@ -55,7 +55,6 @@ recipe main [
   1:number <- copy 0
   2:continuation <- current-continuation
   {
-#?     $print 1:number
     3:boolean <- greater-or-equal 1:number, 3
     break-if 3:boolean
     1:number <- add 1:number, 1
@@ -70,7 +69,6 @@ recipe main [
 $current-continuation: 1
 
 :(scenario continuation_inside_caller)
-#? % Trace_stream->dump_layer = "all"; #? 1
 recipe main [
   1:number <- copy 0
   2:continuation <- loop-body
@@ -131,7 +129,6 @@ recipe g [
   23:number <- add 22:number, 1
   reply 23:number
 ]
-#? ?
 # first call of 'g' executes the part before reply-delimited-continuation
 +mem: storing 12 in location 21
 +run: 2:number <- copy 5