about summary refs log tree commit diff stats
path: root/fork.mu
diff options
context:
space:
mode:
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 3aa37227..af414cf2 100644
--- a/fork.mu
+++ b/fork.mu
@@ -1,6 +1,6 @@
 # example program: running multiple routines
 
-recipe main [
+def main [
   start-running thread2
   {
     $print 34
@@ -8,7 +8,7 @@ recipe main [
   }
 ]
 
-recipe thread2 [
+def thread2 [
   {
     $print 35
     loop