about summary refs log tree commit diff stats
path: root/071print.mu
diff options
context:
space:
mode:
Diffstat (limited to '071print.mu')
-rw-r--r--071print.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/071print.mu b/071print.mu
index d6c72b32..487608a2 100644
--- a/071print.mu
+++ b/071print.mu
@@ -41,7 +41,7 @@ recipe clear-screen [
       done?:boolean <- greater-or-equal i:integer, max:integer
       break-if done?:boolean
       c:address:character <- index-address buf:address:array:character/deref, i:integer
-      c:address:character/deref <- copy [ ]
+      c:address:character/deref <- copy [ ]  # hack: can't copy any literal string except a single space
       i:integer <- add i:integer, 1:literal
       loop
     }