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.html27
1 files changed, 9 insertions, 18 deletions
diff --git a/html/fork.mu.html b/html/fork.mu.html
index 1a378255..c2ea7b19 100644
--- a/html/fork.mu.html
+++ b/html/fork.mu.html
@@ -3,35 +3,27 @@
 <head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <title>Mu - fork.mu</title>
-<meta name="Generator" content="Vim/7.4">
-<meta name="plugin-version" content="vim7.4_v1">
+<meta name="Generator" content="Vim/7.3">
+<meta name="plugin-version" content="vim7.3_v6">
 <meta name="syntax" content="none">
-<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
-<meta name="colorscheme" content="minimal">
+<meta name="settings" content="use_css">
 <style type="text/css">
 <!--
-pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
+pre { font-family: monospace; color: #eeeeee; background-color: #080808; }
 body { font-family: monospace; color: #eeeeee; background-color: #080808; }
-* { font-size: 1.05em; }
 .muControl { color: #c0a020; }
+.Constant { color: #00a0a0; }
+.Delimiter { color: #a04060; }
 .muRecipe { color: #ff8700; }
 .Comment { color: #9090ff; }
-.Delimiter { color: #a04060; }
-.Constant { color: #00a0a0; }
 -->
 </style>
-
-<script type='text/javascript'>
-<!--
-
--->
-</script>
 </head>
 <body>
-<pre id='vimCodeElement'>
+<pre>
 <span class="Comment"># example program: running multiple routines</span>
 
-<span class="muRecipe">recipe</span> main [
+<span class="muRecipe">def</span> main [
   start-running thread2
   <span class="Delimiter">{</span>
     $print <span class="Constant">34</span>
@@ -39,7 +31,7 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
   <span class="Delimiter">}</span>
 ]
 
-<span class="muRecipe">recipe</span> thread2 [
+<span class="muRecipe">def</span> thread2 [
   <span class="Delimiter">{</span>
     $print <span class="Constant">35</span>
     <span class="muControl">loop</span>
@@ -48,4 +40,3 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 </pre>
 </body>
 </html>
-<!-- vim: set foldmethod=manual : -->