about summary refs log tree commit diff stats
path: root/html/apps/ex3.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-03-05 18:29:00 -0800
committerKartik Agaram <vc@akkartik.com>2020-03-05 18:29:00 -0800
commit0657fc16ab8d8f86d84b52a8998715c32bc78eb9 (patch)
treee35636383b3fbfd5a8c5eea97514679d77c721c1 /html/apps/ex3.mu.html
parent16962ee4682269736b281205abadf1aa6340237d (diff)
downloadmu-0657fc16ab8d8f86d84b52a8998715c32bc78eb9.tar.gz
6081 - ctags for .mu files
Diffstat (limited to 'html/apps/ex3.mu.html')
-rw-r--r--html/apps/ex3.mu.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/apps/ex3.mu.html b/html/apps/ex3.mu.html
index aa6c6983..60aac512 100644
--- a/html/apps/ex3.mu.html
+++ b/html/apps/ex3.mu.html
@@ -55,7 +55,7 @@ if ('onhashchange' in window) {
 <body onload='JumpToLine();'>
 <a href='https://github.com/akkartik/mu/blob/master/apps/ex3.mu'>https://github.com/akkartik/mu/blob/master/apps/ex3.mu</a>
 <pre id='vimCodeElement'>
-<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <a href='../mu-init-test.subx.html#L7'>main</a><span class="PreProc"> -&gt; </span>result/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
+<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> main<span class="PreProc"> -&gt; </span>result/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
 <span id="L2" class="LineNr"> 2 </span>  result <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L3" class="LineNr"> 3 </span>  <span class="PreProc">var</span> i/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">1</span>
 <span id="L4" class="LineNr"> 4 </span>  <span class="Delimiter">{</span>
> 2018-06-24 10:23:27 -0700 committer Kartik Agaram <vc@akkartik.com> 2018-06-24 10:23:27 -0700 4269 - start validating alloc-ids on lookup' href='/akkartik/mu/commit/037abandon.cc?h=hlt&id=3ecee22a8a440b5f299729cbe49aede7e270c67c'>3ecee22a ^
0be82cde ^
acce384b ^




3ecee22a ^



dc9afcbd ^

c442a5ad ^
3ecee22a ^
0be82cde ^
dc9afcbd ^

059def11 ^


23d3a022 ^
059def11 ^

9a6f8798 ^
dc9afcbd ^
c442a5ad ^
dc9afcbd ^
c442a5ad ^
3ecee22a ^

9a6f8798 ^
3ecee22a ^

6c96a437 ^
dc9afcbd ^




9a6f8798 ^
dc9afcbd ^

4a943d4e ^
















dc9afcbd ^
4a943d4e ^















3ecee22a ^
4a943d4e ^













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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153