about summary refs log tree commit diff stats
path: root/tangle.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-07 00:21:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-07 00:21:39 -0700
commitd66e27838e4139f1a335f8ab1219ec357ce34b2d (patch)
treed2393e64f08659f671c6f89a8346316ba8c8508e /tangle.mu
parent8e498220ef9cc8a25cd56a0f06cb556b141d44f5 (diff)
downloadmu-d66e27838e4139f1a335f8ab1219ec357ce34b2d.tar.gz
3302
Diffstat (limited to 'tangle.mu')
-rw-r--r--tangle.mu3
1 files changed, 2 insertions, 1 deletions
diff --git a/tangle.mu b/tangle.mu
index 1b5dde66..0fd1599a 100644
--- a/tangle.mu
+++ b/tangle.mu
@@ -31,6 +31,7 @@ after <recursive-case> [
 
 def main [
   1:number <- factorial 5
-  $print [result: ], 1:number, [
+  # trailing space in next line is to help with syntax highlighting
+  $print [result: ], 1:number, [ 
 ]
 ]