about summary refs log tree commit diff stats
path: root/html/static_dispatch.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/static_dispatch.mu.html')
-rw-r--r--html/static_dispatch.mu.html29
1 files changed, 10 insertions, 19 deletions
diff --git a/html/static_dispatch.mu.html b/html/static_dispatch.mu.html
index c3ed60ef..e499fb8f 100644
--- a/html/static_dispatch.mu.html
+++ b/html/static_dispatch.mu.html
@@ -3,44 +3,36 @@
 <head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <title>Mu - static_dispatch.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; }
-.muRecipe { color: #ff8700; }
 .Comment { color: #9090ff; }
-.Constant { color: #00a0a0; }
 .Special { color: #ff6060; }
+.Constant { color: #00a0a0; }
+.muRecipe { color: #ff8700; }
 -->
 </style>
-
-<script type='text/javascript'>
-<!--
-
--->
-</script>
 </head>
 <body>
-<pre id='vimCodeElement'>
-<span class="muRecipe">recipe</span> test a:number<span class="muRecipe"> -&gt; </span>b:number [
+<pre>
+<span class="muRecipe">def</span> test a:number<span class="muRecipe"> -&gt; </span>b:number [
   <span class="Constant">local-scope</span>
   <span class="Constant">load-ingredients</span>
   b<span class="Special"> &lt;- </span>add a, <span class="Constant">1</span>
 ]
 
-<span class="muRecipe">recipe</span> test a:number, b:number<span class="muRecipe"> -&gt; </span>c:number [
+<span class="muRecipe">def</span> test a:number, b:number<span class="muRecipe"> -&gt; </span>c:number [
   <span class="Constant">local-scope</span>
   <span class="Constant">load-ingredients</span>
   c<span class="Special"> &lt;- </span>add a, b
 ]
 
-<span class="muRecipe">recipe</span> main [
+<span class="muRecipe">def</span> main [
   <span class="Constant">local-scope</span>
   a:number<span class="Special"> &lt;- </span>test <span class="Constant">3</span>  <span class="Comment"># selects single-ingredient version</span>
   $print a, <span class="Constant">10/newline</span>
@@ -52,4 +44,3 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 </pre>
 </body>
 </html>
-<!-- vim: set foldmethod=manual : -->