about summary refs log tree commit diff stats
path: root/apps/factorial.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/factorial.mu')
-rw-r--r--apps/factorial.mu5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/factorial.mu b/apps/factorial.mu
index 7d9015e2..a94be482 100644
--- a/apps/factorial.mu
+++ b/apps/factorial.mu
@@ -1,14 +1,13 @@
 fn main -> exit-status/ebx: int {
 #?   run-tests
 #?   result <- copy 0
-  test-factorial # abc
   var tmp/eax: int <- factorial 5
   exit-status <- copy tmp
 }
 
 fn factorial n: int -> result/eax: int {
   compare n 1
-  { # foo
+  {
     break-if->
     result <- copy 1
   }
@@ -16,7 +15,7 @@ fn factorial n: int -> result/eax: int {
     break-if-<=
     var tmp/ecx: int <- copy n
     tmp <- decrement
-    result <- factorial tmp  # test comment
+    result <- factorial tmp
     result <- multiply n
   }
 }