about summary refs log tree commit diff stats
path: root/callcc.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-29 01:23:22 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-29 01:23:22 -0700
commitce87c19ee42bc52c5ab9a1ee3c431a9423e5a885 (patch)
tree126e2445997e1d5a35d80f2999744654dfe8e721 /callcc.mu
parentc91caafd5bd5dae25b0e0efa19879258ff61ad93 (diff)
downloadmu-ce87c19ee42bc52c5ab9a1ee3c431a9423e5a885.tar.gz
1880 - switch .mu files to new type-deducing idiom
Diffstat (limited to 'callcc.mu')
-rw-r--r--callcc.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/callcc.mu b/callcc.mu
index 5e8661bb..1bf32973 100644
--- a/callcc.mu
+++ b/callcc.mu
@@ -2,16 +2,16 @@
 
 recipe main [
   c:continuation <- f
-  continue-from c:continuation            # <-- ..when you hit this
+  continue-from c                         # <-- ..when you hit this
 ]
 
 recipe f [
   c:continuation <- g
-  reply c:continuation
+  reply c
 ]
 
 recipe g [
   c:continuation <- current-continuation  # <-- loop back to here
   $print 1
-  reply c:continuation  # threaded through unmodified after first iteration
+  reply c  # threaded through unmodified after first iteration
 ]