diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-02-17 15:29:43 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-02-17 15:29:43 -0800 |
commit | c52ae116ace032a3eaa53bd297836b675cd8393e (patch) | |
tree | f7e6f7349db94ec0303ea323957040ca20999081 /html/apps/ex2.mu.html | |
parent | 6323661c2c588c4fed280f55f20ca3bbc92edb27 (diff) | |
download | mu-c52ae116ace032a3eaa53bd297836b675cd8393e.tar.gz |
6015
Diffstat (limited to 'html/apps/ex2.mu.html')
-rw-r--r-- | html/apps/ex2.mu.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/html/apps/ex2.mu.html b/html/apps/ex2.mu.html index 94429de0..38bb9d76 100644 --- a/html/apps/ex2.mu.html +++ b/html/apps/ex2.mu.html @@ -16,9 +16,9 @@ a { color:inherit; } * { font-size:12pt; font-size: 1em; } .LineNr { } .Comment { color: #005faf; } -.Delimiter { color: #c000c0; } -.Special { color: #ff6060; } .Constant { color: #008787; } +.Special { color: #ff6060; } +.Delimiter { color: #c000c0; } .PreProc { color: #c000c0; } --> </style> @@ -64,11 +64,11 @@ if ('onhashchange' in window) { <span id="L7" class="LineNr"> 7 </span><span class="Comment"># $ echo $?</span> <span id="L8" class="LineNr"> 8 </span><span class="Comment"># 7</span> <span id="L9" class="LineNr"> 9 </span> -<span id="L10" class="LineNr">10 </span><span class="PreProc">fn</span> <a href='../mu-init-test.subx.html#L7'>main</a><span class="PreProc"> -> </span>result/ebx: int <span class="Delimiter">{</span> +<span id="L10" class="LineNr">10 </span><span class="PreProc">fn</span> <a href='../mu-init-test.subx.html#L7'>main</a><span class="PreProc"> -> </span>result/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span> <span id="L11" class="LineNr">11 </span> result <span class="Special"><-</span> do-add<span class="Constant"> 3 4</span> <span id="L12" class="LineNr">12 </span><span class="Delimiter">}</span> <span id="L13" class="LineNr">13 </span> -<span id="L14" class="LineNr">14 </span><span class="PreProc">fn</span> do-add a: int, b: int<span class="PreProc"> -> </span>result/ebx: int <span class="Delimiter">{</span> +<span id="L14" class="LineNr">14 </span><span class="PreProc">fn</span> do-add a: int, b: int<span class="PreProc"> -> </span>result/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span> <span id="L15" class="LineNr">15 </span> result <span class="Special"><-</span> copy a <span id="L16" class="LineNr">16 </span> result <span class="Special"><-</span> add b <span id="L17" class="LineNr">17 </span><span class="Delimiter">}</span> |