diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-09-06 16:35:46 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-09-06 16:35:46 -0700 |
commit | 0e4a335edc7d4e584924fd6b298156e45d2626c8 (patch) | |
tree | 4bde00176d6d00b72462e856974fecd4411ef025 /html/fork.mu.html | |
parent | 3cf4cc43f2622816777c22c49c32e5159574a1d3 (diff) | |
download | mu-0e4a335edc7d4e584924fd6b298156e45d2626c8.tar.gz |
2175
Diffstat (limited to 'html/fork.mu.html')
-rw-r--r-- | html/fork.mu.html | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/html/fork.mu.html b/html/fork.mu.html index 09d02860..b75cceac 100644 --- a/html/fork.mu.html +++ b/html/fork.mu.html @@ -13,11 +13,8 @@ pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; } body { font-family: monospace; color: #eeeeee; background-color: #080808; } * { font-size: 1.05em; } -.muRecipe { color: #ff8700; } .Comment { color: #9090ff; } -.Constant { color: #00a0a0; } -.Delimiter { color: #a04060; } -.muControl { color: #c0a020; } +.Identifier { color: #804000; } --> </style> @@ -31,19 +28,19 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; } <pre id='vimCodeElement'> <span class="Comment"># example program: running multiple routines</span> -<span class="muRecipe">recipe</span> main [ - start-running <span class="Constant">thread2:recipe</span> - <span class="Delimiter">{</span> - $print <span class="Constant">34</span> - <span class="muControl">loop</span> - <span class="Delimiter">}</span> +recipe main [ + start-running thread2:recipe + { + $<span class="Identifier">print</span> 34 + loop + } ] -<span class="muRecipe">recipe</span> thread2 [ - <span class="Delimiter">{</span> - $print <span class="Constant">35</span> - <span class="muControl">loop</span> - <span class="Delimiter">}</span> +recipe thread2 [ + { + $<span class="Identifier">print</span> 35 + loop + } ] </pre> </body> |