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/global.mu.html | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'html/global.mu.html') diff --git a/html/global.mu.html b/html/global.mu.html index b34ca32c..fdc63011 100644 --- a/html/global.mu.html +++ b/html/global.mu.html @@ -52,20 +52,20 @@ if ('onhashchange' in window) {
- 1 # example program: creating and using global variables
- 2 
- 3 def main [
- 4   # allocate 5 locations for globals
- 5   global-space:space <- new location:type, 5
- 6   # read to globals by using /space:global
- 7   1:num/space:global <- copy 3
- 8   foo
- 9 ]
-10 
-11 def foo [
-12   # ditto for writing to globals
-13   $print 1:num/space:global, 10/newline
-14 ]
+ 1 # example program: creating and using global variables
+ 2 
+ 3 def main [
+ 4   # allocate 5 locations for globals
+ 5   global-space:space <- new location:type, 5
+ 6   # read to globals by using /space:global
+ 7   1:num/space:global <- copy 3
+ 8   foo
+ 9 ]
+10 
+11 def foo [
+12   # ditto for writing to globals
+13   $print 1:num/space:global, 10/newline
+14 ]
 
-- cgit 1.4.1-2-gfad0