about summary refs log tree commit diff stats
path: root/apps/tile/main.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tile/main.mu')
-rw-r--r--apps/tile/main.mu13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu
index 08e6532b..714695fd 100644
--- a/apps/tile/main.mu
+++ b/apps/tile/main.mu
@@ -77,6 +77,19 @@ fn test {
   initialize-environment-with-fake-screen env, 5, 0xa
   var g/eax: grapheme <- copy 0x22  # '"'
   process env, g
+  g <- copy 0x61  # 'a'
+  process env, g
+  g <- copy 0x22  # '"'
+  process env, g
+  g <- copy 0x20  # space
+  process env, g
+  g <- copy 0x6c  # 'l'
+  process env, g
+  g <- copy 0x65  # 'e'
+  process env, g
+  g <- copy 0x6e  # 'n'
+  print-string 0, "--\n"
+  process env, g
   render env
 }