about summary refs log tree commit diff stats
path: root/html/apps/ex2.2.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-03-23 02:16:32 -0700
committerKartik Agaram <vc@akkartik.com>2020-03-23 20:56:49 -0700
commit783eb31a0527677e6c684efc835bd13f9355a2f3 (patch)
tree62a6c770a7e505f3869f1e4b08463436a754d4e5 /html/apps/ex2.2.mu.html
parent98d45d34deb456de19f922bc13ac6a99720c2b32 (diff)
downloadmu-783eb31a0527677e6c684efc835bd13f9355a2f3.tar.gz
6162
Diffstat (limited to 'html/apps/ex2.2.mu.html')
-rw-r--r--html/apps/ex2.2.mu.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/html/apps/ex2.2.mu.html b/html/apps/ex2.2.mu.html
index aacf0671..d76222e3 100644
--- a/html/apps/ex2.2.mu.html
+++ b/html/apps/ex2.2.mu.html
@@ -14,6 +14,7 @@ pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-
 body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
+.muFunction { color: #af5f00; text-decoration: underline; }
 .LineNr { }
 .Constant { color: #008787; }
 .Special { color: #ff6060; }
@@ -54,11 +55,11 @@ if ('onhashchange' in window) {
 <body onload='JumpToLine();'>
 <a href='https://github.com/akkartik/mu/blob/master/apps/ex2.2.mu'>https://github.com/akkartik/mu/blob/master/apps/ex2.2.mu</a>
 <pre id='vimCodeElement'>
-<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="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction">main</span><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> <a href='ex2.2.mu.html#L5'>foo</a>
 <span id="L3" class="LineNr"> 3 </span><span class="Delimiter">}</span>
 <span id="L4" class="LineNr"> 4 </span>
-<span id="L5" class="LineNr"> 5 </span><span class="PreProc">fn</span> <a href='ex2.2.mu.html#L5'>foo</a><span class="PreProc"> -&gt; </span>result/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
+<span id="L5" class="LineNr"> 5 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='ex2.2.mu.html#L5'>foo</a></span><span class="PreProc"> -&gt; </span>result/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
 <span id="L6" class="LineNr"> 6 </span>  <span class="PreProc">var</span> n: int
 <span id="L7" class="LineNr"> 7 </span>  copy-to n, <span class="Constant">3</span>
 <span id="L8" class="LineNr"> 8 </span>  increment n
#n221'>221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378