diff options
Diffstat (limited to 'html/factorial.mu.html')
-rw-r--r-- | html/factorial.mu.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/factorial.mu.html b/html/factorial.mu.html index 41a725b6..5545f582 100644 --- a/html/factorial.mu.html +++ b/html/factorial.mu.html @@ -34,14 +34,14 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; } <span class="Comment"># example program: compute the factorial of 5</span> <span class="muRecipe">recipe</span> main [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> x:number<span class="Special"> <- </span>factorial <span class="Constant">5:literal</span> $print <span class="Constant">[result: ]</span>, x:number, <span class="Constant">[ </span> <span class="Constant">]</span> ] <span class="muRecipe">recipe</span> factorial [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> n:number<span class="Special"> <- </span><span class="Constant">next-ingredient</span> <span class="Delimiter">{</span> <span class="Comment"># if n=0 return 1</span> |