about summary refs log tree commit diff stats
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
parent8e498220ef9cc8a25cd56a0f06cb556b141d44f5 (diff)
downloadmu-d66e27838e4139f1a335f8ab1219ec357ce34b2d.tar.gz
3302
-rw-r--r--counters.mu1
-rw-r--r--tangle.mu3
2 files changed, 2 insertions, 2 deletions
diff --git a/counters.mu b/counters.mu
index fa2b998e..f3445409 100644
--- a/counters.mu
+++ b/counters.mu
@@ -25,6 +25,5 @@ def main [
   a-value:number <- increment-counter a, 1
   # check results
   $print [Contents of counters], 10/newline
-  # trailing space in next line is to help with syntax highlighting
   $print [a: ], a-value, [ b: ], b-value,  10/newline
 ]
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, [ 
 ]
 ]