about summary refs log tree commit diff stats
path: root/apps/tile/environment.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tile/environment.mu')
-rw-r--r--apps/tile/environment.mu6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu
index eaeff4a9..2fa81894 100644
--- a/apps/tile/environment.mu
+++ b/apps/tile/environment.mu
@@ -408,7 +408,11 @@ fn clear-canvas _env: (addr environment) {
   var repl-col/ecx: int <- copy *_repl-col
   draw-vertical-line screen, 1, *nrows, repl-col
   move-cursor screen, 3, 2
-  print-string screen, "x 2* = 2 x *"
+  print-string screen, "x 2* = x 2 *"
+  move-cursor screen, 4, 2
+  print-string screen, "x 1+ = x 1 +"
+  move-cursor screen, 5, 2
+  print-string screen, "x 2+ = x 1+ 1+"
 }
 
 fn real-grapheme? g: grapheme -> result/eax: boolean {