about summary refs log tree commit diff stats
path: root/html/fork.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/fork.mu.html')
-rw-r--r--html/fork.mu.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/html/fork.mu.html b/html/fork.mu.html
new file mode 100644
index 00000000..f3d5b554
--- /dev/null
+++ b/html/fork.mu.html
@@ -0,0 +1,51 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<title>fork.mu</title>
+<meta name="Generator" content="Vim/7.4">
+<meta name="plugin-version" content="vim7.4_v1">
+<meta name="syntax" content="none">
+<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
+<meta name="colorscheme" content="minimal">
+<style type="text/css">
+<!--
+pre { white-space: pre-wrap; font-family: monospace; color: #d0d0d0; background-color: #000000; }
+body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
+* { font-size: 1em; }
+.muRecipe { color: #ff8700; }
+.Constant { color: #008080; }
+.Comment { color: #8080ff; }
+.Delimiter { color: #c000c0; }
+.Identifier { color: #008080; }
+-->
+</style>
+
+<script type='text/javascript'>
+<!--
+
+-->
+</script>
+</head>
+<body>
+<pre id='vimCodeElement'>
+<span class="Comment"># example program: running multiple routines</span>
+
+<span class="muRecipe">recipe</span> main [
+  start-running thread2:<span class="muRecipe">recipe</span>
+  <span class="Delimiter">{</span>
+   <span class="Identifier"> $print</span> <span class="Constant">34:literal</span>
+    <span class="Identifier">loop</span>
+  <span class="Delimiter">}</span>
+]
+
+<span class="muRecipe">recipe</span> thread2 [
+  <span class="Delimiter">{</span>
+   <span class="Identifier"> $print</span> <span class="Constant">35:literal</span>
+    <span class="Identifier">loop</span>
+  <span class="Delimiter">}</span>
+]
+</pre>
+</body>
+</html>
+<!-- vim: set foldmethod=manual : -->