about summary refs log tree commit diff stats
path: root/html/tangle.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/tangle.mu.html')
-rw-r--r--html/tangle.mu.html46
1 files changed, 22 insertions, 24 deletions
diff --git a/html/tangle.mu.html b/html/tangle.mu.html
index e3dba023..aae321e8 100644
--- a/html/tangle.mu.html
+++ b/html/tangle.mu.html
@@ -13,12 +13,10 @@
 pre { white-space: pre-wrap; 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; }
-.Delimiter { color: #a04060; }
-.muControl { color: #c0a020; }
+.Comment { color: #9090ff; }
+.Underlined { color: #c000c0; text-decoration: underline; }
+.Identifier { color: #804000; }
 -->
 </style>
 
@@ -31,40 +29,40 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 <body>
 <pre id='vimCodeElement'>
 <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>
 <span class="Comment"># Compare factorial.mu.</span>
-<span class="Comment">#</span>
+#
 <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 [
-  <span class="Constant">local-scope</span>
-  n:number<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
-  <span class="Delimiter">{</span>
-<span class="Constant">    +base-case</span>
-  <span class="Delimiter">}</span>
-<span class="Constant">  +recursive-case</span>
+recipe factorial [
+  <span class="Underlined">local</span>-scope
+  n:number<span class="Special"> &lt;- </span>next-ingredient
+  {
+    +base-case
+  }
+  +recursive-case
 ]
 
-<span class="muRecipe">after</span> +base-case [
+after +base-case [
   <span class="Comment"># if n=0 return 1</span>
-  zero?:boolean<span class="Special"> &lt;- </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>
+  zero?:boolean<span class="Special"> &lt;- </span>equal n, 0
+  break-unless zero?
+  reply 1
 ]
 
-<span class="muRecipe">after</span> +recursive-case [
+after +recursive-case [
   <span class="Comment"># return n * factorial(n - 1)</span>
-  x:number<span class="Special"> &lt;- </span>subtract n, <span class="Constant">1</span>
+  x:number<span class="Special"> &lt;- </span>subtract n, 1
   subresult:number<span class="Special"> &lt;- </span>factorial x
   result:number<span class="Special"> &lt;- </span>multiply subresult, n
-  <span class="muControl">reply</span> result
+  reply result
 ]
 
-<span class="muRecipe">recipe</span> main [
-  <span class="Constant">1</span>:number<span class="Special"> &lt;- </span>factorial <span class="Constant">5</span>
-  $print <span class="Constant">[result: ]</span>, <span class="Constant">1</span>:number, [
+recipe main [
+  1:number<span class="Special"> &lt;- </span>factorial 5
+  $<span class="Identifier">print</span> [result: ], 1:number, [
 ]
 ]
 </pre>