about summary refs log tree commit diff stats
path: root/apps/tile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tile')
-rw-r--r--apps/tile/main.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu
index b02dc386..2e51eba1 100644
--- a/apps/tile/main.mu
+++ b/apps/tile/main.mu
@@ -87,10 +87,10 @@ fn test {
 fn repl {
   {
     # prompt
-    var line-storage: (stream byte 0x100)
-    var line/ecx: (addr stream byte) <- address line-storage
     print-string-to-real-screen "> "
     # read
+    var line-storage: (stream byte 0x100)
+    var line/ecx: (addr stream byte) <- address line-storage
     clear-stream line
     read-line-from-real-keyboard line
     var done?/eax: boolean <- stream-empty? line