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-20 22:15:32 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-20 22:15:32 -0700
commit45686076340d164d4efacd75db402fb0c4bb789f (patch)
tree0b55600a2a27fd56b81341a5910fa12e131cec79 /apps/tile/main.mu
parent6b973819d0d0e8f2e7562bff69cc9aaa7c3fe36f (diff)
downloadmu-45686076340d164d4efacd75db402fb0c4bb789f.tar.gz
7087 - defining functions now seems to be working
Diffstat (limited to 'apps/tile/main.mu')
-rw-r--r--apps/tile/main.mu13
1 files changed, 2 insertions, 11 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu
index 2defb364..3e79bcbd 100644
--- a/apps/tile/main.mu
+++ b/apps/tile/main.mu
@@ -77,18 +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
+  g <- copy 1  # 'ctrl-a'
   process env, g
-  g <- copy 0x32  # '2'
-  process env, g
-  render env
-  g <- copy 4  # 'ctrl-d'
-  process env, g
-  g <- copy 0x61  # 'a'
-  process env, g
-  g <- copy 0xa  # newline
-  process env, g
-  render env
+#?   render env
 }
 
 fn repl {