about summary refs log tree commit diff stats
path: root/console.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-29 01:23:22 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-29 01:23:22 -0700
commitce87c19ee42bc52c5ab9a1ee3c431a9423e5a885 (patch)
tree126e2445997e1d5a35d80f2999744654dfe8e721 /console.mu
parentc91caafd5bd5dae25b0e0efa19879258ff61ad93 (diff)
downloadmu-ce87c19ee42bc52c5ab9a1ee3c431a9423e5a885.tar.gz
1880 - switch .mu files to new type-deducing idiom
Diffstat (limited to 'console.mu')
-rw-r--r--console.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/console.mu b/console.mu
index 0dd59212..a1bda1bc 100644
--- a/console.mu
+++ b/console.mu
@@ -6,7 +6,7 @@ recipe main [
   open-console
   {
     _, found?:boolean <- check-for-interaction
-    break-if found?:boolean
+    break-if found?
     print-character-to-display 97, 7/white
     loop
   }