about summary refs log tree commit diff stats
path: root/counters.mu
diff options
context:
space:
mode:
Diffstat (limited to 'counters.mu')
-rw-r--r--counters.mu6
1 files changed, 1 insertions, 5 deletions
diff --git a/counters.mu b/counters.mu
index 4662b833..98199072 100644
--- a/counters.mu
+++ b/counters.mu
@@ -26,10 +26,6 @@ recipe main [
   bres:integer <- increment-counter b:address:space, 2:literal
   ares:integer <- increment-counter a:address:space, 1:literal
   # check results
-  $print [Contents of counters a: ]
-  $print ares:integer
-  $print [ b: ]
-  $print bres:integer
-  $print [
+  $print [Contents of counters a: ], ares:integer, [ b: ], bres:integer, [
 ]
 ]