about summary refs log tree commit diff stats
path: root/tangle.mu
diff options
context:
space:
mode:
Diffstat (limited to 'tangle.mu')
-rw-r--r--tangle.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/tangle.mu b/tangle.mu
index b975fd2a..1004ef15 100644
--- a/tangle.mu
+++ b/tangle.mu
@@ -29,7 +29,7 @@
 
 (function main [
   (1:integer <- factorial 5:literal)
-  (print-primitive (("result: " literal)))
-  (print-primitive 1:integer)
-  (print-primitive (("\n" literal)))
+  (print-primitive nil:literal/terminal (("result: " literal)))
+  (print-primitive nil:literal/terminal 1:integer)
+  (print-primitive nil:literal/terminal (("\n" literal)))
 ])