about summary refs log tree commit diff stats
path: root/html/static_dispatch.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-18 09:55:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-18 09:55:49 -0700
commitbf37b4d56e0ff1c0eba338ff094c75762e3b1811 (patch)
tree7909dcea5c04e8f0c28a2f4a99678a1f3d131c11 /html/static_dispatch.mu.html
parent4de96970f192bc2226250e52d1366e985db90ab5 (diff)
downloadmu-bf37b4d56e0ff1c0eba338ff094c75762e3b1811.tar.gz
3401
Diffstat (limited to 'html/static_dispatch.mu.html')
-rw-r--r--html/static_dispatch.mu.html55
1 files changed, 0 insertions, 55 deletions
diff --git a/html/static_dispatch.mu.html b/html/static_dispatch.mu.html
deleted file mode 100644
index 22097281..00000000
--- a/html/static_dispatch.mu.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<!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>Mu - static_dispatch.mu</title>
-<meta name="Generator" content="Vim/7.4">
-<meta name="plugin-version" content="vim7.4_v2">
-<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: #eeeeee; background-color: #080808; }
-body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color: #080808; }
-* { font-size: 12pt; font-size: 1em; }
-.muRecipe { color: #ff8700; }
-.Comment { color: #9090ff; }
-.Constant { color: #00a0a0; }
-.Special { color: #c00000; }
--->
-</style>
-
-<script type='text/javascript'>
-<!--
-
--->
-</script>
-</head>
-<body>
-<pre id='vimCodeElement'>
-<span class="muRecipe">def</span> test a:num<span class="muRecipe"> -&gt; </span>b:num [
-  <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">def</span> test a:num, b:num<span class="muRecipe"> -&gt; </span>c:num [
-  <span class="Constant">local-scope</span>
-  <span class="Constant">load-ingredients</span>
-  c<span class="Special"> &lt;- </span>add a, b
-]
-
-<span class="muRecipe">def</span> main [
-  <span class="Constant">local-scope</span>
-  a:num<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>
-  b:num<span class="Special"> &lt;- </span>test <span class="Constant">3</span>, <span class="Constant">4</span>  <span class="Comment"># selects double-ingredient version</span>
-  $print b, <span class="Constant">10/newline</span>
-  c:num<span class="Special"> &lt;- </span>test <span class="Constant">3</span>, <span class="Constant">4</span>, <span class="Constant">5</span>  <span class="Comment"># prefers double- to single-ingredient version</span>
-  $print c, <span class="Constant">10/newline</span>
-]
-</pre>
-</body>
-</html>
-<!-- vim: set foldmethod=manual : -->