about summary refs log tree commit diff stats
path: root/factorial.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-23 15:15:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-23 15:15:39 -0700
commite5d9a7f2f38e91e5cb675f9e4199e2f822b2f28e (patch)
tree8f5de340fc96e66589e03c6267ba505ff191fa7e /factorial.mu
parentca1afb29c64ae81b74e13c3f613be7d3603c2d76 (diff)
downloadmu-e5d9a7f2f38e91e5cb675f9e4199e2f822b2f28e.tar.gz
1442
Diffstat (limited to 'factorial.mu')
-rw-r--r--factorial.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/factorial.mu b/factorial.mu
index a52cb8ae..4972b943 100644
--- a/factorial.mu
+++ b/factorial.mu
@@ -3,7 +3,7 @@
 recipe main [
   default-space:address:space <- new location:type, 30:literal
   x:number <- factorial 5:literal
-  $print [result: ], x:number, [
+  $print [result: ], x:number, [ 
 ]
 ]