diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-10-09 00:24:24 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-10-09 00:24:24 -0700 |
commit | b4d5b58959f9d416976910609f46733ee91bacb0 (patch) | |
tree | 3293be48d95f44481ae2b0cf151099ccf112898f /html/factorial.mu.html | |
parent | ceeb92d470c29613f6a036f9c2077126ecc09b47 (diff) | |
download | mu-b4d5b58959f9d416976910609f46733ee91bacb0.tar.gz |
3491
Update the html, proving that commit 3490 worked. The only changes are from other recent commits.
Diffstat (limited to 'html/factorial.mu.html')
-rw-r--r-- | html/factorial.mu.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/factorial.mu.html b/html/factorial.mu.html index 43fcad16..a7deb772 100644 --- a/html/factorial.mu.html +++ b/html/factorial.mu.html @@ -45,7 +45,7 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color <span class="Constant">load-ingredients</span> <span class="Delimiter">{</span> <span class="Comment"># if n=0 return 1</span> - zero?:boolean<span class="Special"> <- </span>equal n, <span class="Constant">0</span> + zero?:bool<span class="Special"> <- </span>equal n, <span class="Constant">0</span> <span class="muControl">break-unless</span> zero? <span class="muControl">return</span> <span class="Constant">1</span> <span class="Delimiter">}</span> |