about summary refs log tree commit diff stats
path: root/fork.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-12-08 19:19:16 -0800
committerKartik K. Agaram <vc@akkartik.com>2014-12-08 19:19:16 -0800
commitbe440cb6bf9fbdf317215cff2336cee63c7828ac (patch)
tree112ad0ff99f64e4c6c4d1d37e34a092432353353 /fork.mu
parent18c794eb839d88c57a0acbf38a61277e89c8f39c (diff)
downloadmu-be440cb6bf9fbdf317215cff2336cee63c7828ac.tar.gz
399 - fix mu examples
Thanks Kristis Makris for the bug report.
Diffstat (limited to 'fork.mu')
-rw-r--r--fork.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/fork.mu b/fork.mu
index b392dc7f..6366a208 100644
--- a/fork.mu
+++ b/fork.mu
@@ -4,7 +4,7 @@
   ((x integer) <- copy (34 literal))
   { begin
     (print-primitive (x integer))
-    (continue)
+    (loop)
   }
 ])
 
@@ -13,6 +13,6 @@
   ((y integer) <- copy (35 literal))
   { begin
     (print-primitive (y integer))
-    (continue)
+    (loop)
   }
 ])