diff options
Diffstat (limited to 'apps/tile/main.mu')
-rw-r--r-- | apps/tile/main.mu | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu index 73488d2a..aef42ce8 100644 --- a/apps/tile/main.mu +++ b/apps/tile/main.mu @@ -77,15 +77,9 @@ fn test { initialize-environment-with-fake-screen env, 5, 0xa var g/eax: grapheme <- copy 0x31 # '1' process env, g - g <- copy 0x20 # space - process env, g g <- copy 0x32 # '2' process env, g - g <- copy 0x12 # ctrl-r - process env, g - g <- copy 0x61 # 'a' - process env, g - g <- copy 0xa # newline + g <- copy 0x20 # space process env, g render env } |