diff options
Diffstat (limited to 'html/tangle.mu.html')
-rw-r--r-- | html/tangle.mu.html | 31 |
1 files changed, 11 insertions, 20 deletions
diff --git a/html/tangle.mu.html b/html/tangle.mu.html index 8b0b7d13..7157ed39 100644 --- a/html/tangle.mu.html +++ b/html/tangle.mu.html @@ -3,33 +3,25 @@ <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Mu - tangle.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; } -.muRecipe { color: #ff8700; } -.Comment { color: #9090ff; } -.Constant { color: #00a0a0; } .Special { color: #ff6060; } .Delimiter { color: #a04060; } +.Constant { color: #00a0a0; } +.muRecipe { color: #ff8700; } +.Comment { color: #9090ff; } --> </style> - -<script type='text/javascript'> -<!-- - ---> -</script> </head> <body> -<pre id='vimCodeElement'> +<pre> <span class="Comment"># example program: constructing recipes out of order</span> <span class="Comment">#</span> <span class="Comment"># We construct a factorial function with separate base and recursive cases.</span> @@ -38,7 +30,7 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; } <span class="Comment"># This isn't a very tasteful example, just a simple demonstration of</span> <span class="Comment"># possibilities.</span> -<span class="muRecipe">recipe</span> factorial n:number<span class="muRecipe"> -> </span>result:number [ +<span class="muRecipe">def</span> factorial n:number<span class="muRecipe"> -> </span>result:number [ <span class="Constant">local-scope</span> <span class="Constant">load-ingredients</span> <span class="Delimiter">{</span> @@ -51,7 +43,7 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; } <span class="Comment"># if n=0 return 1</span> zero?:boolean<span class="Special"> <- </span>equal n, <span class="Constant">0</span> <span class="muControl">break-unless</span> zero? - <span class="muControl">reply</span> <span class="Constant">1</span> + <span class="muControl">return</span> <span class="Constant">1</span> ] <span class="muRecipe">after</span> <span class="Constant"><recursive-case></span> [ @@ -61,7 +53,7 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; } result<span class="Special"> <- </span>multiply subresult, n ] -<span class="muRecipe">recipe</span> main [ +<span class="muRecipe">def</span> main [ <span class="Constant">1</span>:number<span class="Special"> <- </span>factorial <span class="Constant">5</span> $print <span class="Constant">[result: ]</span>, <span class="Constant">1</span>:number, [ ] @@ -69,4 +61,3 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; } </pre> </body> </html> -<!-- vim: set foldmethod=manual : --> |