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, 3 insertions, 3 deletions
diff --git a/counters.mu b/counters.mu
index 0b7a4882..0e414513 100644
--- a/counters.mu
+++ b/counters.mu
@@ -23,11 +23,11 @@
   (bres:integer <- increment-counter b:space-address 2:literal)
   (ares:integer <- increment-counter a:space-address 1:literal)
   ; check results
-  (print-primitive-to-host (("Contents of counters a: " literal)))
+  ($print (("Contents of counters a: " literal)))
   (print-integer nil:literal/terminal ares:integer)
-  (print-primitive-to-host ((" b: " literal)))
+  ($print ((" b: " literal)))
   (print-integer nil:literal/terminal bres:integer)
-  (print-primitive-to-host (("\n" literal)))
+  ($print (("\n" literal)))
  ])
 
 ; compare http://www.paulgraham.com/accgen.html