about summary refs log tree commit diff stats
path: root/apps/tile/main.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-26 21:50:37 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-26 21:50:37 -0700
commitd5ac55d3ca8b651a63aa677f509833dffa05aab9 (patch)
tree0cfc4c5956e21b9a498b3015062a98d5b3245905 /apps/tile/main.mu
parent71418907f69cd29ea9a07e7b2f80d51bcec3bba2 (diff)
downloadmu-d5ac55d3ca8b651a63aa677f509833dffa05aab9.tar.gz
7116 - tile: regression in typing in strings
We really need to clean up the Mu compiler's logic around function outputs.
Diffstat (limited to 'apps/tile/main.mu')
-rw-r--r--apps/tile/main.mu13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu
index 714695fd..08e6532b 100644
--- a/apps/tile/main.mu
+++ b/apps/tile/main.mu
@@ -77,19 +77,6 @@ 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
 }