diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-10-22 16:56:07 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-10-22 16:56:07 -0700 |
commit | 9a81d7460fdb16f4e77712e5381d9db8781f5ae6 (patch) | |
tree | 43b05169535fe33e65ecbf61f3fb3ada5f75ed52 /html/020run.cc.html | |
parent | 22f4b76344b2d639cbfcaad56ed681670d436548 (diff) | |
download | mu-9a81d7460fdb16f4e77712e5381d9db8781f5ae6.tar.gz |
3561
Diffstat (limited to 'html/020run.cc.html')
-rw-r--r-- | html/020run.cc.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/html/020run.cc.html b/html/020run.cc.html index bc31010d..cb39df0e 100644 --- a/html/020run.cc.html +++ b/html/020run.cc.html @@ -39,11 +39,11 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color <pre id='vimCodeElement'> <span class="Comment">//: Phase 3: Start running a loaded and transformed recipe.</span> <span class="Comment">//:</span> -<span class="Comment">//: The process of running mu code:</span> +<span class="Comment">//: The process of running Mu code:</span> <span class="Comment">//: load -> transform -> run</span> <span class="Comment">//:</span> <span class="Comment">//: So far we've seen recipes as lists of instructions, and instructions point</span> -<span class="Comment">//: at other recipes. To kick things off mu needs to know how to run certain</span> +<span class="Comment">//: at other recipes. To kick things off Mu needs to know how to run certain</span> <span class="Comment">//: 'primitive' recipes. That will then give the ability to run recipes</span> <span class="Comment">//: containing these primitives.</span> <span class="Comment">//:</span> @@ -184,7 +184,7 @@ map<string<span class="Delimiter">,</span> <span class="Normal">int</span>> <span class="Comment">//: Step 1: load all .mu files with numeric prefixes (in order)</span> <span class="Delimiter">:(before "End Load Recipes")</span> -<span class="Comment">// Load .mu Core</span> +<span class="Comment">// Load Mu Prelude</span> <span class="CommentedCode">//? Save_trace = true;</span> <span class="CommentedCode">//? START_TRACING_UNTIL_END_OF_SCOPE;</span> load_file_or_directory<span class="Delimiter">(</span><span class="Constant">"core.mu"</span><span class="Delimiter">);</span> @@ -429,7 +429,7 @@ vector<<span class="Normal">double</span>> read_memory<span class="Delimit ] <span class="traceAbsent">-mem: storing 34 in location 0</span> -<span class="Comment">//: mu is robust to various combinations of commas and spaces. You just have</span> +<span class="Comment">//: Mu is robust to various combinations of commas and spaces. You just have</span> <span class="Comment">//: to put spaces around the '<-'.</span> <span class="Delimiter">:(scenario comma_without_space)</span> |