about summary refs log tree commit diff stats
path: root/factorial.mu
diff options
context:
space:
mode:
Diffstat (limited to 'factorial.mu')
-rw-r--r--factorial.mu4
1 files changed, 1 insertions, 3 deletions
diff --git a/factorial.mu b/factorial.mu
index 8dd2f23f..4b2126a8 100644
--- a/factorial.mu
+++ b/factorial.mu
@@ -3,9 +3,7 @@
 recipe main [
   default-space:address:space <- new location:type, 30:literal
   x:integer <- factorial 5:literal
-  $print [result: ]
-  $print x:integer
-  $print [
+  $print [result: ], x:integer, [
 ]
 ]