about summary refs log tree commit diff stats
path: root/callcc.mu
diff options
context:
space:
mode:
Diffstat (limited to 'callcc.mu')
-rw-r--r--callcc.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/callcc.mu b/callcc.mu
index a08f9c8a..5e8661bb 100644
--- a/callcc.mu
+++ b/callcc.mu
@@ -12,6 +12,6 @@ recipe f [
 
 recipe g [
   c:continuation <- current-continuation  # <-- loop back to here
-  $print 1:literal
+  $print 1
   reply c:continuation  # threaded through unmodified after first iteration
 ]