about summary refs log tree commit diff stats
path: root/console.mu
diff options
context:
space:
mode:
Diffstat (limited to 'console.mu')
-rw-r--r--console.mu3
1 files changed, 2 insertions, 1 deletions
diff --git a/console.mu b/console.mu
index a1bda1bc..7c43bde9 100644
--- a/console.mu
+++ b/console.mu
@@ -5,10 +5,11 @@
 recipe main [
   open-console
   {
-    _, found?:boolean <- check-for-interaction
+    e:event, found?:boolean <- check-for-interaction
     break-if found?
     print-character-to-display 97, 7/white
     loop
   }
   close-console
+  $print e, 10/newline
 ]