From 204dae921abff0c70e017215bb3c91fa6ca11aff Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 26 Dec 2016 11:44:14 -0800 Subject: 3710 Turns out we don't need to explicitly add anchors for each line. Vim's TOhtml has magic for that out of the box. --- html/static-dispatch.mu.html | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'html/static-dispatch.mu.html') diff --git a/html/static-dispatch.mu.html b/html/static-dispatch.mu.html index 7c894157..bfeb8179 100644 --- a/html/static-dispatch.mu.html +++ b/html/static-dispatch.mu.html @@ -52,27 +52,27 @@ if ('onhashchange' in window) {
- 1 def test a:num -> b:num [
- 2   local-scope
- 3   load-ingredients
- 4   b <- add a, 1
- 5 ]
- 6 
- 7 def test a:num, b:num -> c:num [
- 8   local-scope
- 9   load-ingredients
-10   c <- add a, b
-11 ]
-12 
-13 def main [
-14   local-scope
-15   a:num <- test 3  # selects single-ingredient version
-16   $print a, 10/newline
-17   b:num <- test 3, 4  # selects double-ingredient version
-18   $print b, 10/newline
-19   c:num <- test 3, 4, 5  # prefers double- to single-ingredient version
-20   $print c, 10/newline
-21 ]
+ 1 def test a:num -> b:num [
+ 2   local-scope
+ 3   load-ingredients
+ 4   b <- add a, 1
+ 5 ]
+ 6 
+ 7 def test a:num, b:num -> c:num [
+ 8   local-scope
+ 9   load-ingredients
+10   c <- add a, b
+11 ]
+12 
+13 def main [
+14   local-scope
+15   a:num <- test 3  # selects single-ingredient version
+16   $print a, 10/newline
+17   b:num <- test 3, 4  # selects double-ingredient version
+18   $print b, 10/newline
+19   c:num <- test 3, 4, 5  # prefers double- to single-ingredient version
+20   $print c, 10/newline
+21 ]
 
-- cgit 1.4.1-2-gfad0