about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-11 09:59:29 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-11 09:59:29 -0700
commit4e6778d7cc155c8ad38b605a1dfa9296199afd58 (patch)
tree02c218cee36f0bc47e7b6f548da1c5bdf1930868 /Readme.md
parent1d025275153d571990f753a367f392ebfc94caf7 (diff)
downloadmu-4e6778d7cc155c8ad38b605a1dfa9296199afd58.tar.gz
1341
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/Readme.md b/Readme.md
index 1c1f693a..7630318b 100644
--- a/Readme.md
+++ b/Readme.md
@@ -257,6 +257,23 @@ just flat lists of instructions.
 
 Another example, this time with concurrency.
 
+```
+  recipe main [
+    start-running thread2:recipe
+    {
+      $print 34:literal
+      loop
+    }
+  ]
+
+  recipe thread2 [
+    {
+      $print 35:literal
+      loop
+    }
+  ]
+```
+
 ```shell
   $ ./mu fork.mu
 ```