about summary refs log tree commit diff stats
path: root/html/example1.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-12-01 14:13:33 -0800
committerKartik Agaram <vc@akkartik.com>2018-12-01 14:13:33 -0800
commite4ac3c9e6e5464a0fc0f8fd3763a572e0e180c04 (patch)
tree7f6ca26afcdf8e3bf54459c6592ebf26fb968133 /html/example1.mu.html
parent54e5128a14dcea5b93a8a9402558f0736fb7dba3 (diff)
downloadmu-e4ac3c9e6e5464a0fc0f8fd3763a572e0e180c04.tar.gz
4814
Diffstat (limited to 'html/example1.mu.html')
-rw-r--r--html/example1.mu.html21
1 files changed, 12 insertions, 9 deletions
diff --git a/html/example1.mu.html b/html/example1.mu.html
index f0cecdae..55b307fa 100644
--- a/html/example1.mu.html
+++ b/html/example1.mu.html
@@ -11,16 +11,18 @@
 <style type="text/css">
 <!--
 pre { white-space: pre-wrap; font-family: monospace; color: #aaaaaa; background-color: #080808; }
-body { font-size: 12pt; font-family: monospace; color: #aaaaaa; background-color: #080808; }
-a { color:#eeeeee; text-decoration: none; }
-a:hover { text-decoration: underline; }
-* { font-size: 12pt; font-size: 1em; }
+body { font-size:12pt; font-family: monospace; color: #aaaaaa; background-color: #080808; }
+.subxS2Comment a { color:inherit; }
+.subxS1Comment a { color:inherit; }
+.subxComment a { color:inherit; }
+.subxH2Comment a { color:inherit; }
+.subxH1Comment a { color:inherit; }
+* { font-size:12pt; font-size: 1em; }
 .muRecipe { color: #ff8700; }
-.LineNr { color: #444444; }
-.Constant { color: #00a0a0; }
-.Special { color: #c00000; }
-.Comment { color: #9090ff; }
-.Comment a { color:#0000ee; text-decoration:underline; }
+.LineNr { color:#444444; }
+.Constant { color:#00a0a0; }
+.Special { color:#c00000; }
+.Comment { color: #8080ff; }
 -->
 </style>
 
@@ -54,6 +56,7 @@ if ('onhashchange' in window) {
 </script>
 </head>
 <body onload='JumpToLine();'>
+<a href='https://github.com/akkartik/mu/blob/master/example1.mu'>https://github.com/akkartik/mu/blob/master/example1.mu</a>
 <pre id='vimCodeElement'>
 <span id="L1" class="LineNr">1 </span><span class="muRecipe">def</span> <a href='example1.mu.html#L1'>main</a> [
 <span id="L2" class="LineNr">2 </span>  <span class="Constant">local-scope</span>
div>
ce2c1efc ^
6e181e7f ^















ce2c1efc ^
6e181e7f ^















c8a3ccbe ^
6e181e7f ^





8aeb85f0 ^
6e181e7f ^









7e7a8a6e ^
b1635a5c ^
33352536 ^

e99038ea ^
33352536 ^



8aeb85f0 ^
33352536 ^
7e7a8a6e ^
33352536 ^
e99038ea ^
33352536 ^
e99038ea ^
33352536 ^
7e7a8a6e ^
33352536 ^
4a4a392d ^
8aeb85f0 ^
4a4a392d ^

8aeb85f0 ^
4a4a392d ^
8aeb85f0 ^
4a4a392d ^





b1635a5c ^
4a4a392d ^



7e7a8a6e ^
b1635a5c ^
4a4a392d ^










b1635a5c ^
4a4a392d ^




6e181e7f ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134