about summary refs log tree commit diff stats
path: root/html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-14 12:46:53 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-14 12:46:53 -0700
commitd9f8784d4c73a257205f040eeb31414814db56f8 (patch)
treeab847bc9d7edbde07c64792a11d05c91b26bed52 /html
parent7dd5a41e079d92ec9d0d09839ad009d66d2c1a17 (diff)
downloadmu-d9f8784d4c73a257205f040eeb31414814db56f8.tar.gz
7031
Diffstat (limited to 'html')
-rw-r--r--html/apps/factorial.mu.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/apps/factorial.mu.html b/html/apps/factorial.mu.html
index 958139cf..b26c4123 100644
--- a/html/apps/factorial.mu.html
+++ b/html/apps/factorial.mu.html
@@ -97,7 +97,7 @@ if ('onhashchange' in window) {
 <span id="L38" class="LineNr">38 </span>  <span class="muComment"># len = length(args)</span>
 <span id="L39" class="LineNr">39 </span>  <span class="PreProc">var</span> len/<span class="Constant">ecx</span>: int <span class="SpecialChar">&lt;-</span> length args
 <span id="L40" class="LineNr">40 </span>  $main-body: <span class="Delimiter">{</span>
-<span id="L41" class="LineNr">41 </span>    <span class="muComment"># if (len &lt;= 1) factorial(5)</span>
+<span id="L41" class="LineNr">41 </span>    <span class="muComment"># if (len &lt;= 1) return factorial(5)</span>
 <span id="L42" class="LineNr">42 </span>    compare len, <span class="Constant">1</span>
 <span id="L43" class="LineNr">43 </span>    <span class="Delimiter">{</span>
 <span id="L44" class="LineNr">44 </span>      <span class="PreProc">break-if-&gt;</span>
eral.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#include<assert.h>
#include<cstdlib>
#include<cstring>

#include<vector>
using std::vector;
#include<list>
using std::list;
#include<utility>
using std::pair;

#include<string>
using std::string;

#include<iostream>
using std::istream;
using std::ostream;
using std::cin;
using std::cout;
using std::cerr;

#include<sstream>
using std::istringstream;
using std::ostringstream;

#include<fstream>
using std::ifstream;

#include <locale>
using std::isspace;  // unicode-aware

#include "type_list"

#include "function_list"

#include "file_list"

#include "test_file_list"