diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-10 21:35:42 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-10 21:43:45 -0800 |
commit | 76755b2836b0dadd88f82635f661f9d9df77604d (patch) | |
tree | f4f4429510c739fd1f9e51edd10e03c27107acba /html/static_dispatch.mu.html | |
parent | 080e9cb73fa55cdc862f1dd7593df56e0a6302b8 (diff) | |
download | mu-76755b2836b0dadd88f82635f661f9d9df77604d.tar.gz |
2423 - describe shape-shifting in html docs
Diffstat (limited to 'html/static_dispatch.mu.html')
-rw-r--r-- | html/static_dispatch.mu.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/html/static_dispatch.mu.html b/html/static_dispatch.mu.html new file mode 100644 index 00000000..c3ed60ef --- /dev/null +++ b/html/static_dispatch.mu.html @@ -0,0 +1,55 @@ +<!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_v1"> +<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-family: monospace; color: #eeeeee; background-color: #080808; } +* { font-size: 1.05em; } +.muRecipe { color: #ff8700; } +.Comment { color: #9090ff; } +.Constant { color: #00a0a0; } +.Special { color: #ff6060; } +--> +</style> + +<script type='text/javascript'> +<!-- + +--> +</script> +</head> +<body> +<pre id='vimCodeElement'> +<span class="muRecipe">recipe</span> test a:number<span class="muRecipe"> -> </span>b:number [ + <span class="Constant">local-scope</span> + <span class="Constant">load-ingredients</span> + b<span class="Special"> <- </span>add a, <span class="Constant">1</span> +] + +<span class="muRecipe">recipe</span> test a:number, b:number<span class="muRecipe"> -> </span>c:number [ + <span class="Constant">local-scope</span> + <span class="Constant">load-ingredients</span> + c<span class="Special"> <- </span>add a, b +] + +<span class="muRecipe">recipe</span> main [ + <span class="Constant">local-scope</span> + a:number<span class="Special"> <- </span>test <span class="Constant">3</span> <span class="Comment"># selects single-ingredient version</span> + $print a, <span class="Constant">10/newline</span> + b:number<span class="Special"> <- </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:number<span class="Special"> <- </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 : --> |